GNU Classpath (0.95) | |
Frames | No Frames |
Classes derived from java.beans.FeatureDescriptor | |
class | BeanDescriptor describes general information about a Bean, plus
stores the Bean's Class and it's customizer's Class.
|
class | EventSetDescriptor describes the hookup between an event source class and
an event listener class.
|
class | IndexedPropertyDescriptor describes information about a JavaBean
indexed property, by which we mean an array-like property that
has been exposed via a pair of get and set methods and another
pair that allows you to get to the property by an index.
An example property would have four methods like this:
FooBar[] getFoo() void setFoo(FooBar[]) FooBar getFoo(int) void setFoo(int,FooBar)
The constraints put on get and set methods are:
|
class | MethodDescriptor describes information about a JavaBeans method.
|
class | ParameterDescriptor represents a single parameter to a method.
|
class | PropertyDescriptor describes information about a JavaBean property,
by which we mean a property that has been exposed via a pair of
get and set methods. |
GNU Classpath (0.95) |