Package pt.ist.fenixWebFramework.renderers.validators

Examples of pt.ist.fenixWebFramework.renderers.validators.HtmlChainValidator


    }

    private static class HtmlGradeTextInput extends HtmlTextInput {

        public HtmlGradeTextInput(final boolean required) {
            HtmlChainValidator htmlChainValidator = new HtmlChainValidator(this);
            super.setChainValidator(htmlChainValidator);
            new HtmlGradeTextInputValidator(htmlChainValidator);
            if (required) {
                htmlChainValidator.addValidator(new RequiredValidator(htmlChainValidator));
            }
        }
View Full Code Here

TOP

Related Classes of pt.ist.fenixWebFramework.renderers.validators.HtmlChainValidator

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.