Java in a Nutshell Online Quick Reference for Java 1.1
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);
}