public class BeanInfoProperty
extends java.lang.Object
This contains the information for one property in a BeanInfo - PropertyDescriptor, read method, and write method. This class is necessary because the read/write methods in the PropertyDescriptor may not be accessible if the bean given to the introspector is not a public class. In this case, a publicly accessible version of the method must be found by searching for a public superclass/interface that declares the method (this searching is done by the BeanInfoManager).
Modifier and Type | Field and Description |
---|---|
(package private) java.beans.PropertyDescriptor |
mPropertyDescriptor |
(package private) java.lang.reflect.Method |
mReadMethod |
(package private) java.lang.reflect.Method |
mWriteMethod |
Constructor and Description |
---|
BeanInfoProperty(java.lang.reflect.Method pReadMethod,
java.lang.reflect.Method pWriteMethod,
java.beans.PropertyDescriptor pPropertyDescriptor)
Constructor
|
Modifier and Type | Method and Description |
---|---|
java.beans.PropertyDescriptor |
getPropertyDescriptor() |
java.lang.reflect.Method |
getReadMethod() |
java.lang.reflect.Method |
getWriteMethod() |
java.lang.reflect.Method mReadMethod
java.lang.reflect.Method mWriteMethod
java.beans.PropertyDescriptor mPropertyDescriptor