ICU-2103 whoops, need to process interfaces like classes

X-SVN-Rev: 10452
This commit is contained in:
Doug Felt 2002-12-03 22:37:51 +00:00
parent fc0a2adad9
commit 1ef6c14d6d

View file

@ -261,7 +261,7 @@ public class CheckTags {
// synthetic constructors. So you'll have to live with spurious errors or 'implement'
// the synthetic constructors...
boolean isClass = doc.isClass();
boolean isClass = doc.isClass() || doc.isInterface();
String header = "--- " + (isClass ? doc.qualifiedName() : doc.name());
if (doc instanceof ExecutableMemberDoc) {
header += ((ExecutableMemberDoc)doc).flatSignature();