KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > beans > IndexedPropertyDescriptor

java.beans
Class IndexedPropertyDescriptor

java.lang.Object
  extended by java.beans.FeatureDescriptor
      extended by java.beans.PropertyDescriptor
          extended by java.beans.IndexedPropertyDescriptor
See Also:
Top Examples, Source Code

public boolean equals(Object obj)
See Also:
Hashtable, Object.hashCode(), PropertyDescriptor
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Class<?> getIndexedPropertyType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Method getIndexedReadMethod()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Method getIndexedWriteMethod()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int hashCode()
See Also:
Hashtable, Object.equals(java.lang.Object), PropertyDescriptor
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public IndexedPropertyDescriptor(String propertyName,
                                 Class<?> beanClass)
                          throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public IndexedPropertyDescriptor(String propertyName,
                                 Class<?> beanClass,
                                 String readMethodName,
                                 String writeMethodName,
                                 String indexedReadMethodName,
                                 String indexedWriteMethodName)
                          throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public IndexedPropertyDescriptor(String propertyName,
                                 Method readMethod,
                                 Method writeMethod,
                                 Method indexedReadMethod,
                                 Method indexedWriteMethod)
                          throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setIndexedReadMethod(Method readMethod)
                          throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setIndexedWriteMethod(Method writeMethod)
                           throws IntrospectionException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags