Package org.openfaces.taglib.internal.validation

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


*/
public class ValidateUrlTagHandler extends ValidateCustomTagHandler {

    public ValidateUrlTagHandler(TagConfig config) {
        super(config);
        setMetaRule(new PropertyHandlerMetaRule(new ValidateUrlTag()));
    }
View Full Code Here


        setMetaRule(new PropertyHandlerMetaRule(new ValidateUrlTag()));
    }

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

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

    public ValidateUrlJspTag() {
        super(new ValidateUrlTag(), "org.openfaces.URL");
    }
View Full Code Here

TOP

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

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.