Example usage for Java java.beans IndexedPropertyDescriptor fields, constructors, methods, implement or subclass
The text is from its open source code.
IndexedPropertyDescriptor(String propertyName, Class> beanClass, String readMethodName, String writeMethodName, String indexedReadMethodName, String indexedWriteMethodName) This constructor takes the name of a simple property, and method names for reading and writing the property, both indexed and non-indexed. |
Class> | getIndexedPropertyType() Returns the Java type info for the indexed property. |
Method | getIndexedReadMethod() Gets the method that should be used to read an indexed property value. |
Method | getIndexedWriteMethod() Gets the method that should be used to write an indexed property value. |
String | getName() Gets the programmatic name of this feature. |
Method | getReadMethod() Gets the method that should be used to read the property value. |
Method | getWriteMethod() Gets the method that should be used to write the property value. |
void | setReadMethod(Method readMethod) Sets the method that should be used to read the property value. |
void | setWriteMethod(Method writeMethod) Sets the method that should be used to write the property value. |