Uses of Interface
com.softwareag.centrasite.appl.framework.validation.Validatable

Packages that use Validatable
com.softwareag.centrasite.appl.framework.validation   
com.softwareag.centrasite.appl.framework.validation.impl   
 

Uses of Validatable in com.softwareag.centrasite.appl.framework.validation
 

Subinterfaces of Validatable in com.softwareag.centrasite.appl.framework.validation
 interface Control
          A control is the combination of Validatable, and the Constrained.
 

Methods in com.softwareag.centrasite.appl.framework.validation that return types with arguments of type Validatable
 java.util.Collection<Validatable> ValidatableContainer.getValidatables()
          Returns the instances of Validatable.
 

Uses of Validatable in com.softwareag.centrasite.appl.framework.validation.impl
 

Classes in com.softwareag.centrasite.appl.framework.validation.impl that implement Validatable
 class DefaultControl
          Default implementation of Control.
 class DefaultValidatable
          Default implementation of Validatable.
 class ValidatableBeanProperty
          This is an implementation of Validatable, which allows to validate a beans property.
 class ValidatableBooleanProperty
          Subclass of ValidatableBeanProperty for boolean properties.
 class ValidatableConceptProperty
          Subclass of ValidatableBeanProperty for concept properties.
 class ValidatableConceptRefProperty
          Subclass of ValidatableBeanProperty for concept properties.
 class ValidatableDateProperty
          Subclass of ValidatableBeanProperty for date properties.
 class ValidatableIntegerProperty
          Subclass of ValidatableBeanProperty for integer properties.
 class ValidatableListProperty
          Subclass of ValidatableBeanProperty for list properties.
 class ValidatableSelectedValueProperty
          An implementation of ValidatableProperty, which allows to select values from a collection of acceptable values.
 class ValidatableStringProperty
          Subclass of ValidatableBeanProperty for string properties.
 class ValidatableUserProperty
          Subclass of ValidatableBeanProperty for concept properties.
 

Methods in com.softwareag.centrasite.appl.framework.validation.impl that return Validatable
static Validatable Validator.getValidatable(Constraint.Context pContext)
          Reads the Validatable from the given Constraint.Context.
protected  Validatable ValidatableFactory.getValidatable(ValidatableFactory.Context pContext, java.lang.reflect.Method pMethod)
          Checks, whether a Validatable is being created for the given method.
protected  Validatable ValidatableFactory.newValidatable(ValidatableClasses.ValidatableClass pClass, ValidatableFactory.Context pContext)
          Creates a new instance of Validatable.
 

Methods in com.softwareag.centrasite.appl.framework.validation.impl that return types with arguments of type Validatable
 java.lang.Class<Validatable> ValidatableClasses.ValidatableClass.getImplClass()
          Returns the validatables implementation class.
 java.util.Collection<Validatable> ValidatableContainer.getValidatables()
          Returns the containers validatables.
 java.util.Collection<Validatable> ValidatableFactory.getValidatables(ValidatableFactory.Context pContext, java.util.Collection<?> pBeans)
          This method is used to create validatables.
 java.util.Collection<Validatable> ValidatableFactory.getValidatables(ValidatableFactory.Context pContext, java.lang.Object pBean)
          This method is used to create validatables.
 

Methods in com.softwareag.centrasite.appl.framework.validation.impl with parameters of type Validatable
protected  void ValidatableFactory.createConstraints(ValidatableFactory.Context pContext, Validatable pValidatable)
          Creates constraints for the given validatable.
 void Validator.setValidatable(Validatable pValidatable)
          Sets the Validatable, which is currently being checked, in the given Constraint.Context.
protected  void Validator.validate(Validatable pValidatable)
          Called to validate the given Validatable.
 

Method parameters in com.softwareag.centrasite.appl.framework.validation.impl with type arguments of type Validatable
protected  void ValidatableFactory.createValidatables(ValidatableFactory.Context pContext, java.util.List<Validatable> pList)
          Creates a collection of validatables.
 void ValidatableClasses.ValidatableClass.setImplClass(java.lang.Class<Validatable> pImplClass)
          Sets the validatables implementation class.
protected  void Validator.validate(java.util.Collection<Validatable> pValidatables)
          Called to validate the given container of constraints.
 java.util.List<Validator.ErrorInfo> Validator.validate(Constraint.Context pContext, java.util.Collection<Validatable> pValidatables)
          Performs the validation and returns the result.