for (final Iterator it = getAttributeHandlers().entrySet().iterator(); it.hasNext();)
{
final Map.Entry entry = (Entry) it.next();
final String name = (String) entry.getKey();
final ITagAttributeHandler handler = (ITagAttributeHandler) entry.getValue();
attributes += String.format("\t\t\tAttribute: name=%s, customHandler=%s, propertyName=%s, isELAllowed=%b\n", //$NON-NLS-1$
name, handler.getCustomHandler(), handler.getName(),
Boolean.valueOf(handler.isELAllowed()));
}
return attributes;
}