Package org.openfaces.taglib.internal.validation

Examples of org.openfaces.taglib.internal.validation.ValidateRegexTag


* @author Ekaterina Shliakhovetskaya
*/
public class ValidateRegexTagHandler extends ValidateCustomTagHandler {
    public ValidateRegexTagHandler(TagConfig config) {
        super(config);
        setMetaRule(new PropertyHandlerMetaRule(new ValidateRegexTag()));
    }
View Full Code Here


        setMetaRule(new PropertyHandlerMetaRule(new ValidateRegexTag()));
    }

    public ValidateRegexTagHandler(ValidatorConfig config) {
        super(config);
        setMetaRule(new PropertyHandlerMetaRule(new ValidateRegexTag()));
    }
View Full Code Here

* @author Ekaterina Shliakhovetskaya
*/
public class ValidateRegexJspTag extends AbstractCustomValidatorJspTag {

    public ValidateRegexJspTag() {
        super(new ValidateRegexTag(), "org.openfaces.RegularExpression");
    }
View Full Code Here

TOP

Related Classes of org.openfaces.taglib.internal.validation.ValidateRegexTag

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.