Uses of Class
org.jbeans.BeanProperty

Packages that use BeanProperty
org.jbeans   
 

Uses of BeanProperty in org.jbeans
 

Subclasses of BeanProperty in org.jbeans
 class IndexedBeanProperty
          This class is used to access an indexed JavaBean property.
 class SynchronizedBeanProperty
          This class is identical to its parent except that it is thread safe.
 class SynchronizedIndexedBeanProperty
          This class is identical to its parent except that it is thread safe.
 

Methods in org.jbeans that return BeanProperty
 BeanProperty JavaBean.getBeanProperty(String propertyName)
          Returns the bean property described by the propertyName String parameter.
 BeanProperty DynamicNestedBeanProperty.getRootProperty()
          Returns the base property of nested properties or the property of local properties.
 

Methods in org.jbeans with parameters of type BeanProperty
static Object JavaBeanTools.callGetter(BeanProperty prop, Object bean)
          Another convience method that calls a java bean getter and returns the value.
static Object JavaBeanTools.callIndexedGetter(BeanProperty prop, Object bean, int index)
          Another convience method that calls an indexed java bean getter and returns the value.
static void JavaBeanTools.callSetter(BeanProperty prop, Object bean, Object param)
          Another convience method for calling a setter on a java bean.
static void JavaBeanTools.callIndexedSetter(BeanProperty prop, Object bean, int index, Object param)
          Another convience method for calling a setter on a java bean.