Package org.apache.commons.el
Class BeanInfoProperty
- java.lang.Object
-
- org.apache.commons.el.BeanInfoProperty
-
public class BeanInfoProperty extends java.lang.ObjectThis 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).
- Version:
- $Change: 181181 $$DateTime: 2001/06/26 09:55:09 $$Author: luehe $
- Author:
- Nathan Abramson - Art Technology Group
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.beans.PropertyDescriptormPropertyDescriptor(package private) java.lang.reflect.MethodmReadMethod(package private) java.lang.reflect.MethodmWriteMethod
-
Constructor Summary
Constructors Constructor Description BeanInfoProperty(java.lang.reflect.Method pReadMethod, java.lang.reflect.Method pWriteMethod, java.beans.PropertyDescriptor pPropertyDescriptor)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.beans.PropertyDescriptorgetPropertyDescriptor()java.lang.reflect.MethodgetReadMethod()java.lang.reflect.MethodgetWriteMethod()
-