Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.beans.PropertyDescriptor

Availability: JDK 1.1

public class PropertyDescriptor extends FeatureDescriptor {
   // Public Constructors
      public PropertyDescriptor(String propertyName, Class beanClass) throws IntrospectionException;
      public PropertyDescriptor(String propertyName, Class beanClass, String getterName, String setterName) throws IntrospectionException;
      public PropertyDescriptor(String propertyName, Method getter, Method setter) throws IntrospectionException;
   // Public Instance Methods
      public Class getPropertyEditorClass();
      public Class getPropertyType();
      public Method getReadMethod();
      public Method getWriteMethod();
      public boolean isBound();
      public boolean isConstrained();
      public void setBound(boolean bound);
      public void setConstrained(boolean constrained);
      public void setPropertyEditorClass(Class propertyEditorClass);
}
Extended By:
IndexedPropertyDescriptor.
Returned By:
BeanInfo.getPropertyDescriptors(), SimpleBeanInfo.getPropertyDescriptors().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.