| Package | Description |
|---|---|
| java.beans |
Contains classes related to developing
beans -- components based on the JavaBeans™ architecture.
|
| Modifier and Type | Method and Description |
|---|---|
static BeanInfo |
Introspector.getBeanInfo(Class
Introspect on a Java Bean and learn about all its properties, exposed methods, and events.
|
static BeanInfo |
Introspector.getBeanInfo(Class
Introspect on a Java bean and learn all about its properties, exposed methods, below a given "stop" point.
|
static BeanInfo |
Introspector.getBeanInfo(Class
Introspect on a Java Bean and learn about all its properties, exposed methods and events, below a given
stopClass point subject to some control
flags.
|
static BeanInfo |
Introspector.getBeanInfo(Class
Introspect on a Java bean and learn about all its properties, exposed methods, and events, subject to some control flags.
|
void |
IndexedPropertyDescriptor.setIndexedReadMethod(Method
Sets the method that should be used to read an indexed property value.
|
void |
IndexedPropertyDescriptor.setIndexedWriteMethod(Method
Sets the method that should be used to write an indexed property value.
|
void |
PropertyDescriptor.setReadMethod(Method
Sets the method that should be used to read the property value.
|
void |
PropertyDescriptor.setWriteMethod(Method
Sets the method that should be used to write the property value.
|
| Constructor and Description | |
|---|---|
EventSetDescriptor(Class
Creates an
EventSetDescriptor assuming that you are following the most simple standard design pattern where a named event "fred" is (1) delivered as a call on the single method of interface FredListener, (2) has a single argument of type FredEvent, and (3) where the FredListener may be registered with a call on an addFredListener method of the source component and removed with a call on a removeFredListener method.
|
|
EventSetDescriptor(Class
Creates an
EventSetDescriptor from scratch using string names.
|
|
EventSetDescriptor(Class
This constructor creates an EventSetDescriptor from scratch using string names.
|
|
EventSetDescriptor(String
Creates an
EventSetDescriptor from scratch using
java.lang.reflect.Method and
java.lang.Class objects.
|
|
EventSetDescriptor(String
This constructor creates an EventSetDescriptor from scratch using java.lang.reflect.Method and java.lang.Class objects.
|
|
EventSetDescriptor(String
Creates an
EventSetDescriptor from scratch using
java.lang.reflect.MethodDescriptor and
java.lang.Class objects.
|
|
IndexedPropertyDescriptor(String
This constructor constructs an IndexedPropertyDescriptor for a property that follows the standard Java conventions by having getFoo and setFoo accessor methods, for both indexed access and array access.
|
|
IndexedPropertyDescriptor(String
This constructor takes the name of a simple property, and method names for reading and writing the property, both indexed and non-indexed.
|
|
IndexedPropertyDescriptor(String
This constructor takes the name of a simple property, and Method objects for reading and writing the property.
|
|
PropertyDescriptor(String
Constructs a PropertyDescriptor for a property that follows the standard Java convention by having getFoo and setFoo accessor methods.
|
|
PropertyDescriptor(String
This constructor takes the name of a simple property, and method names for reading and writing the property.
|
|
PropertyDescriptor(String
This constructor takes the name of a simple property, and Method objects for reading and writing the property.
|