}
public ITagAttributeHandler createAttributeHandler(final String name)
throws UnknownAttributeException
{
final AttributeToPropertyMapping mapping = _loader.getAttributeMapping(
_tagId, name);
if (mapping != null)
{
final String customHandler = mapping.getCustomConversionFactoryId();
final boolean isELAllowed = mapping.isElAllowed();
final String propertyName = mapping.getPropertyName();
if (propertyName != null)
{
return new ComponentPropertyHandler(customHandler, name,
isELAllowed, propertyName);
}