51525354555657
public ValidateCustomTagHandler(ConverterConfig config) { super(config); binding = getAttribute("binding"); metaRule = new PropertyHandlerMetaRule(new ValidateCustomTag()); }
57585960616263
} public ValidateCustomTagHandler(ValidatorConfig config) { super(config); binding = getAttribute("binding"); metaRule = new PropertyHandlerMetaRule(new ValidateCustomTag()); }
63646566676869
} public ValidateCustomTagHandler(TagConfig config) { super(config); binding = getAttribute("binding"); metaRule = new PropertyHandlerMetaRule(new ValidateCustomTag()); }
21222324252627
* @author Ekaterina Shliakhovetskaya */ public class ValidateCustomJspTag extends AbstractCustomValidatorJspTag { public ValidateCustomJspTag() { super(new ValidateCustomTag(), "org.openfaces.Custom"); }