Package org.openfaces.taglib.internal.validation

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


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


        setMetaRule(new PropertyHandlerMetaRule(new ValidateEmailTag()));
    }

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

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

    public ValidateEmailJspTag() {
        super(new ValidateEmailTag(), "org.openfaces.EMail");
    }
View Full Code Here

TOP

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

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.