use of com.sun.javadoc.SeeTag in project com.revolsys.open by revolsys.
the class DocletUtil method description.
public static String description(final ClassDoc containingClass, final Tag[] tags) {
final StringBuilder text = new StringBuilder();
if (tags != null && tags.length > 0) {
for (final Tag tag : tags) {
final String kind = tag.kind();
if (tag instanceof SeeTag) {
final SeeTag seeTag = (SeeTag) tag;
seeTag(text, containingClass, seeTag);
} else if ("Text".equals(kind)) {
text.append(tag.text());
}
}
}
return text.toString();
}
Aggregations