515253545556575859
if (propertyName != null) { return new ComponentPropertyHandler(customHandler, name, isELAllowed, propertyName); } return new TagAttributeHandler(customHandler, name, isELAllowed); } return new TagAttributeHandler(null, name, false); }
43444546474849
public static class NullAttributeAdvisor implements IAttributeAdvisor { public ITagAttributeHandler createAttributeHandler(String name) throws UnknownAttributeException { return new TagAttributeHandler(null, name, false); }