Package org.cast.cwm.data.validator

Examples of org.cast.cwm.data.validator.UniqueUserInPeriodValidator


    public EditStudentForm(String id) {
      super(id);
     
      // A somewhat ugly validator to ensure that no two students in the same period have the same full name.
      add(new UniqueUserInPeriodValidator() {

        private static final long serialVersionUID = 1L;

        @Override
        public FormComponent<String> getFirstNameComponent() {
View Full Code Here

TOP

Related Classes of org.cast.cwm.data.validator.UniqueUserInPeriodValidator

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.