June 1997
Intermediate to advanced
318 pages
8h 17m
English
Class java.beans.IndexedPropertyDescriptor
The
IndexedPropertyDescriptor
class is used to describe a property that
appears to be an ordered collection. This property has an indexed
read or indexed write method to access specific elements of the
collection. An indexed property may also provide non-indexed read and
write methods which are used to read and write the values of the
property as a single array.
public class IndexedPropertyDescriptor extends PropertyDescriptor
{
// constructors
public IndexedPropertyDescriptor(String propertyName,
Class beanClass)
throws IntrospectionException;
public IndexedPropertyDescriptor(String propertyName,
Class beanClass,
String getterName, String setterName,
String indexedGetterName,
String indexedSetterName)
throws IntrospectionException;
public IndexedPropertyDescriptor(String propertyName,
Method getter, Method setter,
Method indexedGetter, Method indexedSetter)
throws IntrospectionException;
// methods
public Class getIndexedPropertyType();
public Method getIndexedReadMethod();
public Method getIndexedWriteMethod();
}
IntrospectionException,
PropertyDescriptor
Read now
Unlock full access