Package org.openfaces.taglib.internal.validation

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


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


        setMetaRule(new PropertyHandlerMetaRule(new ValidateEqualTag()));
    }

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

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

    public ValidateEqualJspTag() {
        super(new ValidateEqualTag(), "org.openfaces.Equal");
    }
View Full Code Here

TOP

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

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.