Java java.beans IndexedPropertyDescriptor fields, constructors, methods, implement or subclass

Example usage for Java java.beans IndexedPropertyDescriptor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.beans IndexedPropertyDescriptor.

The text is from its open source code.

Constructor

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.

Method

ClassgetIndexedPropertyType()
Returns the Java type info for the indexed property.
MethodgetIndexedReadMethod()
Gets the method that should be used to read an indexed property value.
MethodgetIndexedWriteMethod()
Gets the method that should be used to write an indexed property value.
StringgetName()
Gets the programmatic name of this feature.
MethodgetReadMethod()
Gets the method that should be used to read the property value.
MethodgetWriteMethod()
Gets the method that should be used to write the property value.
voidsetReadMethod(Method readMethod)
Sets the method that should be used to read the property value.
voidsetWriteMethod(Method writeMethod)
Sets the method that should be used to write the property value.