Uses of Interface
org.nakedobjects.metamodel.interactions.ValidatingInteractionAdvisor

Packages that use ValidatingInteractionAdvisor
org.nakedobjects.metamodel.facets.actions   
org.nakedobjects.metamodel.facets.actions.validate   
org.nakedobjects.metamodel.facets.collections.validate   
org.nakedobjects.metamodel.facets.object.bounded   
org.nakedobjects.metamodel.facets.object.validate   
org.nakedobjects.metamodel.facets.object.validprops   
org.nakedobjects.metamodel.facets.properties.validate   
org.nakedobjects.metamodel.facets.propparam.specification   
org.nakedobjects.metamodel.facets.propparam.validate.mandatory   
org.nakedobjects.metamodel.facets.propparam.validate.mask   
org.nakedobjects.metamodel.facets.propparam.validate.maxlength   
org.nakedobjects.metamodel.facets.propparam.validate.regex   
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.actions
 

Classes in org.nakedobjects.metamodel.facets.actions that implement ValidatingInteractionAdvisor
 class MandatoryFacetOverriddenByMethod
          Derived by presence of an optionalXxx method.
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.actions.validate
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.actions.validate
 interface ActionValidationFacet
          The mechanism by which the set of parameters of the action can be validated before the action itself is invoked.
 

Classes in org.nakedobjects.metamodel.facets.actions.validate that implement ValidatingInteractionAdvisor
 class ActionValidationFacetAbstract
           
 class ActionValidationFacetViaMethod
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.collections.validate
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.collections.validate
 interface CollectionValidateAddToFacet
          Validate that an object can be added to a collection.
 interface CollectionValidateRemoveFromFacet
          Validate that an object can be removed to a collection.
 

Classes in org.nakedobjects.metamodel.facets.collections.validate that implement ValidatingInteractionAdvisor
 class CollectionValidateAddToFacetAbstract
           
 class CollectionValidateAddToFacetViaMethod
           
 class CollectionValidateRemoveFromFacetAbstract
           
 class CollectionValidateRemoveFromFacetViaMethod
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.object.bounded
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.object.bounded
 interface BoundedFacet
          Whether the number of instances of this class is bounded.
 

Classes in org.nakedobjects.metamodel.facets.object.bounded that implement ValidatingInteractionAdvisor
 class BoundedFacetAbstract
           
 class BoundedFacetAnnotation
           
 class BoundedFacetImpl
           
 class BoundedFacetMarkerInterface
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.object.validate
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.object.validate
 interface ValidateObjectFacet
          Mechanism for determining whether this object is in a valid state, for example so that it can be persisted or updated.
 

Classes in org.nakedobjects.metamodel.facets.object.validate that implement ValidatingInteractionAdvisor
 class ValidateObjectFacetAbstract
           
 class ValidateObjectFacetViaValidateMethod
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.object.validprops
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.object.validprops
 interface ObjectValidPropertiesFacet
          Object-level validator that ensures that all mandatory properties are entered prior to persisting the object.
 

Classes in org.nakedobjects.metamodel.facets.object.validprops that implement ValidatingInteractionAdvisor
 class ObjectValidPropertiesFacetAbstract
           
 class ObjectValidPropertiesFacetImpl
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.properties.validate
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.properties.validate
 interface PropertyValidateFacet
          The mechanism by which the proposed value of a property can be validated, called immediately before setting the value.
 

Classes in org.nakedobjects.metamodel.facets.properties.validate that implement ValidatingInteractionAdvisor
 class PropertyValidateFacetAbstract
           
 class PropertyValidateFacetDefault
          Non checking property validation facet that provides default behaviour for all properties.
 class PropertyValidateFacetNone
           
 class PropertyValidateFacetViaMethod
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.specification
 

Classes in org.nakedobjects.metamodel.facets.propparam.specification that implement ValidatingInteractionAdvisor
 class MustSatisfySpecificationFacet
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.validate.mandatory
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.validate.mandatory
 interface MandatoryFacet
          Whether a property or a parameter is mandatory (not optional).
 

Classes in org.nakedobjects.metamodel.facets.propparam.validate.mandatory that implement ValidatingInteractionAdvisor
 class MandatoryFacetAbstract
           
 class MandatoryFacetDefault
          Whether a property or a parameter is mandatory (not optional).
 class OptionalFacet
          Derived by presence of an @Optional method.
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.validate.mask
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.validate.mask
 interface MaskFacet
          Whether the (string) property or a parameter must correspond to a specific mask.
 

Classes in org.nakedobjects.metamodel.facets.propparam.validate.mask that implement ValidatingInteractionAdvisor
 class MaskFacetAbstract
           
 class MaskFacetAnnotation
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.validate.maxlength
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.validate.maxlength
 interface MaxLengthFacet
          Whether the (string) property or a parameter's length must not exceed a certain length.
 

Classes in org.nakedobjects.metamodel.facets.propparam.validate.maxlength that implement ValidatingInteractionAdvisor
 class MaxLengthFacetAbstract
           
 class MaxLengthFacetAnnotation
           
 class MaxLengthFacetUnlimited
           
 

Uses of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.validate.regex
 

Subinterfaces of ValidatingInteractionAdvisor in org.nakedobjects.metamodel.facets.propparam.validate.regex
 interface RegExFacet
          Whether the (string) property or a parameter must correspond to a specific regular expression.
 

Classes in org.nakedobjects.metamodel.facets.propparam.validate.regex that implement ValidatingInteractionAdvisor
 class RegExFacetAbstract
           
 class RegExFacetAnnotation
           
 



Copyright © 2001-2009 Naked Objects Group Ltd.. All Rights Reserved.