{
logger.error("Error creating XSD File: Error generating events for Processor.", e);
}
}
}
TagEventsDeclaration evtsDecl = processorClass.getAnnotation(TagEventsDeclaration.class);
if (evtsDecl != null)
{
for (TagEventDeclaration evt : evtsDecl.value())
{
out.println("<xs:attribute name=\""+evt.value()+"\" >");
String attrDescription = evt.description();
if (attrDescription != null && attrDescription.length() > 0)
{