Uses of Interface
net.sf.oval.configuration.Configurer

Packages that use Configurer
net.sf.oval   
net.sf.oval.configuration.annotation   
net.sf.oval.configuration.pojo   
net.sf.oval.configuration.xml   
net.sf.oval.guard This package contains classes that are relevant for OVal's programming by contract feature. 
 

Uses of Configurer in net.sf.oval
 

Methods in net.sf.oval that return types with arguments of type Configurer
 List<Configurer> Validator.getConfigurers()
           
 

Constructors in net.sf.oval with parameters of type Configurer
Validator(Configurer... configurers)
          Constructs a new validator instance and configures it using the given configurers
 

Constructor parameters in net.sf.oval with type arguments of type Configurer
Validator(Collection<Configurer> configurers)
          Constructs a new validator instance and configures it using the given configurers
 

Uses of Configurer in net.sf.oval.configuration.annotation
 

Classes in net.sf.oval.configuration.annotation that implement Configurer
 class AnnotationsConfigurer
          Configurer that configures constraints based on annotations tagged with Constraint
 class BeanValidationAnnotationsConfigurer
          Constraints configurer that interprets the JSR303 built-in Java Bean Validation annotations: javax.validation.constraints.AssertFalse => net.sf.oval.constraint.AssertFalseCheck javax.validation.constraints.AssertTrue => net.sf.oval.constraint.AssertTrueCheck javax.validation.constraints.DecimalMax => net.sf.oval.constraint.MaxCheck javax.validation.constraints.DecimalMin => net.sf.oval.constraint.MinCheck javax.validation.constraints.Digits => net.sf.oval.constraint.DigitsCheck javax.validation.constraints.Future => net.sf.oval.constraint.FutureCheck javax.validation.constraints.Max => net.sf.oval.constraint.MaxCheck javax.validation.constraints.Min => net.sf.oval.constraint.MinCheck javax.validation.constraints.NotNull => net.sf.oval.constraint.NotNullCheck javax.validation.constraints.Null => net.sf.oval.constraint.AssertNullCheck javax.validation.constraints.Past => net.sf.oval.constraint.PastCheck javax.validation.constraints.Pattern => net.sf.oval.constraint.PatternCheck javax.validation.constraints.Size => net.sf.oval.constraint.SizeCheck javax.validation.Valid => net.sf.oval.constraint.AssertValidCheck
 class JPAAnnotationsConfigurer
          Constraints configurer that interprets certain EJB3 JPA annotations: javax.persistence.Basic(optional=false) => net.sf.oval.constraint.NotNullCheck javax.persistence.OneToOne(optional=false) => net.sf.oval.constraint.NotNullCheck, net.sf.oval.constraint.AssertValidCheck javax.persistence.ManyToOne(optional=false) => net.sf.oval.constraint.NotNullCheck, net.sf.oval.constraint.AssertValidCheck javax.persistence.ManyToMany => net.sf.oval.constraint.AssertValidCheck javax.persistence.Column(nullable=false) => net.sf.oval.constraint.NotNullCheck javax.persistence.Column(length=5) => net.sf.oval.constraint.LengthCheck
 

Uses of Configurer in net.sf.oval.configuration.pojo
 

Classes in net.sf.oval.configuration.pojo that implement Configurer
 class POJOConfigurer
           
 

Uses of Configurer in net.sf.oval.configuration.xml
 

Classes in net.sf.oval.configuration.xml that implement Configurer
 class XMLConfigurer
          XStream (http://xstream.codehaus.org/) based XML configuration class.
 

Uses of Configurer in net.sf.oval.guard
 

Constructors in net.sf.oval.guard with parameters of type Configurer
Guard(Configurer... configurers)
           
 

Constructor parameters in net.sf.oval.guard with type arguments of type Configurer
Guard(Collection<Configurer> configurers)
           
 



Copyright © 2005-2013 The OVal Development Team. All Rights Reserved.