Package codetroopers.wicket.web.parsley.validator.ParsleySizeValidationBehaviors

Examples of codetroopers.wicket.web.parsley.validator.ParsleySizeValidationBehaviors.ParsleyMinLengthValidationBehavior.onComponentTag()


     * we're using the existing behaviors to keep a correct DRYness
     */
    @Override
    public void modify(final FormComponent<?> component, final ComponentTag tag, final Size annotation) {
        final ParsleyMinLengthValidationBehavior minValidator = new ParsleyMinLengthValidationBehavior(annotation.min());
        minValidator.onComponentTag(component, tag);
        final ParsleyMaxLengthValidationBehavior maxValidator = new ParsleyMaxLengthValidationBehavior(annotation.max());
        maxValidator.onComponentTag(component, tag);
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.