Uses of Interface
project35.soa.validation.FieldValidationService

Packages that use FieldValidationService
project35.soa.validation The classes in this package support Project35's facilities for validating the data set. 
 

Uses of FieldValidationService in project35.soa.validation
 

Subinterfaces of FieldValidationService in project35.soa.validation
 interface EditFieldValidationService
          A generic interface used to validate field values.
 interface ListFieldValidationService
          A generic interface used to validate field values.
 

Classes in project35.soa.validation that implement FieldValidationService
 class AbstractEditFieldValidationService
          Has routines for validating required fields.
 class BooleanValidator
          checks that a field value is a valid boolean
 class BoundedDoubleValidator
          Determines whether a double field value is within minimum and maximum bounds boundaries are inclusive.
 class BoundedFloatValidator
          Determines whether a float field value is within minimum and maximum bounds boundaries are inclusive.
 class BoundedIntegerValidator
          Determines whether an integer field value is within minimum and maximum bounds boundaries are inclusive.
 class Choose1FromNValidator
          This class is used for combination box fields that have a "None" option.
 class DateTimeValidator
          This validator checks if a String value is formatted according to the XML Schema dateTime format.
 class DateValidator
          In Project35, the user can establish which format they want to use to express date values.
 class DoubleValidator
          Checks whether a field value is a valid double
 class FloatValidator
          Checks whether field value is a valid float
 class IntegerValidator
          Checks whether a field value is a valid integer
 class NumericValidator
          a marker class indicating that the validation service affects numeric values.
 class PositiveIntegerValidator
          checks that a field is a positive integer
 class RequiredFieldValidator
          checks whether a required field has been left blank.
 class StringMaskValidator
          Checks that a string field value matches a regular expression.
 class StringValidator
          Checks that a value is a string - this class should probably be deprecated.
 class StubbedEditFieldValidationService
           Copyright (c) 2008 Kevin Garwood for Project35.
 class StubbedListFieldValidationService
           Copyright (c) 2008 Kevin Garwood for Project35.
 class URLValidator
          Supposed to check whether field is a valid URL.
 

Methods in project35.soa.validation that return FieldValidationService
 FieldValidationService FieldValidationServiceFactory.createFieldValidationService(java.lang.Class fieldValidationServiceClass, boolean isPersistent)
           
 FieldValidationService FieldValidationServiceFactory.createFieldValidationService(java.lang.Class fieldValidationServiceClass, Parameter[] parameters, boolean isPersistent)