Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.beans.IndexedPropertyDescriptor

Availability: JDK 1.1

public class IndexedPropertyDescriptor extends PropertyDescriptor {
   // Public Constructors
      public IndexedPropertyDescriptor(String propertyName, Class beanClass) throws IntrospectionException;
      public IndexedPropertyDescriptor(String propertyName, Class beanClass, String getterName, String setterName, String indexedGetterName, String indexedSetterName) throws IntrospectionException;
      public IndexedPropertyDescriptor(String propertyName, Method getter, Method setter, Method indexedGetter, Method indexedSetter) throws IntrospectionException;
   // Public Instance Methods
      public Class getIndexedPropertyType();
      public Method getIndexedReadMethod();
      public Method getIndexedWriteMethod();
}

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