* @param added
* @param processorClass
*/
private void generateAttributes(PrintStream out, String library, Set<String> added, Class<?> processorClass)
{
TagAttributesDeclaration attrsDecl = processorClass.getAnnotation(TagAttributesDeclaration.class);
if (attrsDecl != null)
{
for (TagAttributeDeclaration attr : attrsDecl.value())
{
if (!added.contains(attr.value()))
{
out.print("<xs:attribute name=\""+attr.value()+"\" type=\""+getSchemaType(attr.type(), library)+"\" ");
if (attr.required())