Package org.activiti.explorer.ui.validator

Examples of org.activiti.explorer.ui.validator.LongValidator


    if (formProperty.getValue() != null) {
      textField.setValue(formProperty.getValue());
    }

    // Add validation of numeric value
    textField.addValidator(new LongValidator("Value must be a long"));
    textField.setImmediate(true);

    return textField;
  }
View Full Code Here

TOP

Related Classes of org.activiti.explorer.ui.validator.LongValidator

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.