| java.lang.Object java.beans.FeatureDescriptor java.beans.PropertyDescriptor java.beans.IndexedPropertyDescriptor
Constructor Summary | |
public | IndexedPropertyDescriptor(String propertyName, Class> beanClass, String getterName, String setterName, String indexedGetterName, String indexedSetterName) Constructs a new instance of IndexedPropertyDescriptor . | public | IndexedPropertyDescriptor(String propertyName, Method getter, Method setter, Method indexedGetter, Method indexedSetter) Constructs a new instance of IndexedPropertyDescriptor . | public | IndexedPropertyDescriptor(String propertyName, Class> beanClass) Constructs a new instance of IndexedPropertyDescriptor . |
IndexedPropertyDescriptor | public IndexedPropertyDescriptor(String propertyName, Class> beanClass, String getterName, String setterName, String indexedGetterName, String indexedSetterName) throws IntrospectionException(Code) | | Constructs a new instance of IndexedPropertyDescriptor .
Parameters: propertyName - the specified indexed property's name. Parameters: beanClass - the bean class Parameters: getterName - the name of the array getter Parameters: setterName - the name of the array setter Parameters: indexedGetterName - the name of the indexed getter. Parameters: indexedSetterName - the name of the indexed setter. throws: IntrospectionException - |
IndexedPropertyDescriptor | public IndexedPropertyDescriptor(String propertyName, Method getter, Method setter, Method indexedGetter, Method indexedSetter) throws IntrospectionException(Code) | | Constructs a new instance of IndexedPropertyDescriptor .
Parameters: propertyName - the specified indexed property's name. Parameters: getter - the array getter Parameters: setter - the array setter Parameters: indexedGetter - the indexed getter Parameters: indexedSetter - the indexed setter throws: IntrospectionException - |
IndexedPropertyDescriptor | public IndexedPropertyDescriptor(String propertyName, Class> beanClass) throws IntrospectionException(Code) | | Constructs a new instance of IndexedPropertyDescriptor .
Parameters: propertyName - the specified indexed property's name. Parameters: beanClass - the bean class. throws: IntrospectionException - |
equals | public boolean equals(Object obj)(Code) | | Determines if this IndexedPropertyDescriptor is equal to
the specified object. Two IndexedPropertyDescriptor s are
equal if the reader, indexed reader, writer, indexed writer, property
types, indexed property type, property editor and flags are equal.
Parameters: obj - true if this indexed property descriptor is equal to thespecified object. |
getIndexedPropertyType | public Class> getIndexedPropertyType()(Code) | | Obtains the Class object of the indexed property type.
the Class object of the indexed property type. |
getIndexedReadMethod | public Method getIndexedReadMethod()(Code) | | Obtains the indexed getter.
the indexed getter. |
getIndexedWriteMethod | public Method getIndexedWriteMethod()(Code) | | Obtains the indexed setter.
the indexed setter. |
hashCode | public int hashCode()(Code) | | HashCode of the IndexedPropertyDescriptor
|
|
|