if (declaration.getAnnotation(Deprecated.class) != null) {
addTag(taglib, parent, annotationTag.name(), document);
}
addAttributes(declaration, taglib, parent, annotationTag.name(), document);
if (StringUtils.isNotEmpty(annotationTag.deprecatedName())) {
addTag(taglib, parent, annotationTag.deprecatedName(), document);
addAttributes(declaration, taglib, parent, annotationTag.deprecatedName(), document);
}
}
protected void appendTag(InterfaceDeclaration declaration, String taglib, Element parent, Document document) {