Uses of Class
jfun.util.beans.NoSuchPropertyException

Packages that use NoSuchPropertyException
jfun.util.beans Provides helper classes to handle java bean properties. 
 

Uses of NoSuchPropertyException in jfun.util.beans
 

Methods in jfun.util.beans that throw NoSuchPropertyException
 java.lang.Class BeanType.getIndexedPropertyType(java.lang.String name)
          Get the type of an indexed property.
 java.lang.reflect.Method BeanType.getIndexedReader(java.lang.String name)
          Get the reader method for an indexed property.
 java.lang.reflect.Method BeanType.getIndexedWriter(java.lang.String name)
          Get the writer method for an indexed property.
 java.lang.Object Bean.getProperty(java.lang.String name)
          Get value for a property.
 java.lang.Object Bean.getProperty(java.lang.String name, int ind)
          Get value for an indexed property.
 java.lang.Class BeanType.getPropertyType(java.lang.String name)
          Get the type of a property.
 java.lang.reflect.Method BeanType.getReader(java.lang.String name)
          Get the reader method of a property.
 java.lang.reflect.Method BeanType.getWriter(java.lang.String name)
          Get the writer method of a property.
 void BeanType.setProperty(java.lang.Object bean, java.lang.String name, java.lang.Object val)
          Set value for a property of a bean of this type.
 Bean Bean.setProperty(java.lang.String name, int ind, java.lang.Object val)
          Set value for an indexed property.
 Bean Bean.setProperty(java.lang.String name, java.lang.Object val)
          Set value for a property.