Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.apache.commons.beanutils.DynaProperty

Uses of DynaProperty in org.apache.commons.beanutils
 

Fields in org.apache.commons.beanutils declared as DynaProperty
protected  DynaProperty[] JDBCDynaClass.properties
          The set of dynamic properties that are part of this DynaClass.
protected  DynaProperty[] WrapDynaClass.properties
          The set of dynamic properties that are part of this DynaClass.
protected  DynaProperty[] BasicDynaClass.properties
          The set of dynamic properties that are part of this DynaClass.
 

Methods in org.apache.commons.beanutils that return DynaProperty
 DynaProperty LazyDynaMap.getDynaProperty(java.lang.String name)
          Return a property descriptor for the specified property.
 DynaProperty[] LazyDynaMap.getDynaProperties()
          Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
 DynaProperty LazyDynaClass.getDynaProperty(java.lang.String name)
          Return a property descriptor for the specified property.
 DynaProperty JDBCDynaClass.getDynaProperty(java.lang.String name)
          Return a property descriptor for the specified property, if it exists; otherwise, return null.
 DynaProperty[] JDBCDynaClass.getDynaProperties()
          Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
protected  DynaProperty JDBCDynaClass.createDynaProperty(java.sql.ResultSetMetaData metadata, int i)
          Factory method to create a new DynaProperty for the given index into the result set metadata.
 DynaProperty WrapDynaClass.getDynaProperty(java.lang.String name)
          Return a property descriptor for the specified property, if it exists; otherwise, return null.
 DynaProperty[] WrapDynaClass.getDynaProperties()
          Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
protected  DynaProperty WrapDynaBean.getDynaProperty(java.lang.String name)
          Return the property descriptor for the specified property name.
 DynaProperty BasicDynaClass.getDynaProperty(java.lang.String name)
          Return a property descriptor for the specified property, if it exists; otherwise, return null.
 DynaProperty[] BasicDynaClass.getDynaProperties()
          Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
 DynaProperty DynaClass.getDynaProperty(java.lang.String name)
          Return a property descriptor for the specified property, if it exists; otherwise, return null.
 DynaProperty[] DynaClass.getDynaProperties()
          Return an array of ProperyDescriptors for the properties currently defined in this DynaClass.
protected  DynaProperty BasicDynaBean.getDynaProperty(java.lang.String name)
          Return the property descriptor for the specified property name.
 

Methods in org.apache.commons.beanutils with parameters of type DynaProperty
protected  void LazyDynaMap.add(DynaProperty property)
          Add a new dynamic property.
protected  void LazyDynaClass.add(DynaProperty property)
          Add a new dynamic property.
protected  void BasicDynaClass.setProperties(DynaProperty[] properties)
          Set the list of dynamic properties supported by this DynaClass.
 

Constructors in org.apache.commons.beanutils with parameters of type DynaProperty
LazyDynaMap(DynaProperty[] properties)
          Construct a new LazyDynaMap with the specified properties.
LazyDynaMap(java.lang.String name, DynaProperty[] properties)
          Construct a new LazyDynaMap with the specified name and properties.
LazyDynaClass(java.lang.String name, DynaProperty[] properties)
          Construct a new LazyDynaClass with the specified name and properties.
LazyDynaClass(java.lang.String name, java.lang.Class dynaBeanClass, DynaProperty[] properties)
          Construct a new LazyDynaClass with the specified name, DynaBean class and properties.
BasicDynaClass(java.lang.String name, java.lang.Class dynaBeanClass, DynaProperty[] properties)
          Construct a new BasicDynaClass with the specified parameters.