Business Components

Uses of Interface
oracle.jbo.server.util.VetoableChangeListener

Packages that use VetoableChangeListener
oracle.jbo.server Contains the implementation of middle tier components. 
oracle.jbo.server.rules Contains sample validation beans. 
 

Uses of VetoableChangeListener in oracle.jbo.server
 

Classes in oracle.jbo.server that implement VetoableChangeListener
 class JboMandatoryAttributesValidator
          Implements non-null validation for mandatory attributes.
 class JboPrecisionScaleValidator
          Implements precision and scale validation for numeric attributes and length validation for string and character attributes.
 

Methods in oracle.jbo.server with parameters of type VetoableChangeListener
protected  void EntityDefImpl.addVetoableChangeListener(VetoableChangeListener listener)
          Adds a VetoableChangeListener to the listener list.
protected  void EntityDefImpl.addVetoableChangeListener(int index, VetoableChangeListener listener)
          Adds a VetoableChangeListener to the listener list for an attribute at the given index.
protected  void EntityDefImpl.addVetoableChangeListener(java.lang.String attributeName, VetoableChangeListener listener)
          Adds a VetoableChangeListener to the listener list for an attribute of the given name.
protected  void EntityDefImpl.removeVetoableChangeListener(VetoableChangeListener listener)
          Removes a VetoableChangeListener from the listener list.
protected  void EntityDefImpl.removeVetoableChangeListener(int index, VetoableChangeListener listener)
          Removes a VetoableChangeListener from the listener list of the given attribute (by index).
protected  void EntityDefImpl.removeVetoableChangeListener(java.lang.String attributeName, VetoableChangeListener listener)
          Removes a VetoableChangeListener from the listener list of the given attribute (by index).
 

Uses of VetoableChangeListener in oracle.jbo.server.rules
 

Subinterfaces of VetoableChangeListener in oracle.jbo.server.rules
 interface GenericValidator
          Implemented by validators for domain datatypes.
 interface JbiValidator
          The principal interface for validator classes.
 

Classes in oracle.jbo.server.rules that implement VetoableChangeListener
 class JboCompareValidator
          A validator that tests literal values by comparing them to a pre-defined value, using a pre-defined relation.
 class JboGenericValidator
          A validator for domain attributes.
 class JboListValidator
          A validator that tests for the presence of a literal value in a list of pre-defined values.
 class JboMethodValidator
          A validator that tests values by passing them to a validation method.
 class JboRangeValidator
          A validator that tests if a literal value lies within a pre-defined range.
 class JboSQLCompareValidator
          A validator that tests literal values by comparing them to a database value, using a pre-defined relation.
 class JboSQLListValidator
          A validator that tests for the presence of a literal value in a list of database values.
 class JboVOCompareValidator
          A validator that tests literal values by comparing them to a database value, using a pre-defined relation.
 class JboVOListValidator
          A validator that tests for the presence of a literal value in a list of database values.
 


Business Components