Package | Description |
---|---|
jadex.commons.beans |
Modifier and Type | Method and Description |
---|---|
static BeanInfo |
Introspector.getBeanInfo(Class<?> beanClass)
Gets the
BeanInfo object which contains the information of
the properties, events and methods of the specified bean class. |
static BeanInfo |
Introspector.getBeanInfo(Class<?> beanClass,
Class<?> stopClass)
Gets the
BeanInfo object which contains the information of
the properties, events and methods of the specified bean class. |
static BeanInfo |
Introspector.getBeanInfo(Class<?> beanClass,
int flags)
Gets the
BeanInfo object which contains the information of
the properties, events and methods of the specified bean class. |
void |
IndexedPropertyDescriptor.setIndexedReadMethod(Method indexedGetter)
Sets the indexed getter as the specified method.
|
void |
IndexedPropertyDescriptor.setIndexedWriteMethod(Method indexedSetter)
Sets the indexed setter as the specified method.
|
void |
PropertyDescriptor.setReadMethod(Method getter) |
void |
PropertyDescriptor.setWriteMethod(Method setter) |
Constructor and Description |
---|
EventSetDescriptor(Class<?> sourceClass,
String eventSetName,
Class<?> listenerType,
String listenerMethodName) |
EventSetDescriptor(Class<?> sourceClass,
String eventSetName,
Class<?> listenerType,
String[] listenerMethodNames,
String addListenerMethodName,
String removeListenerMethodName) |
EventSetDescriptor(Class<?> sourceClass,
String eventSetName,
Class<?> listenerType,
String[] listenerMethodNames,
String addListenerMethodName,
String removeListenerMethodName,
String getListenerMethodName) |
EventSetDescriptor(String eventSetName,
Class<?> listenerType,
Method[] listenerMethods,
Method addListenerMethod,
Method removeListenerMethod) |
EventSetDescriptor(String eventSetName,
Class<?> listenerType,
Method[] listenerMethods,
Method addListenerMethod,
Method removeListenerMethod,
Method getListenerMethod) |
EventSetDescriptor(String eventSetName,
Class<?> listenerType,
MethodDescriptor[] listenerMethodDescriptors,
Method addListenerMethod,
Method removeListenerMethod) |
IndexedPropertyDescriptor(String propertyName,
Class<?> beanClass)
Constructs a new instance of
IndexedPropertyDescriptor . |
IndexedPropertyDescriptor(String propertyName,
Class<?> beanClass,
String getterName,
String setterName,
String indexedGetterName,
String indexedSetterName)
Constructs a new instance of
IndexedPropertyDescriptor . |
IndexedPropertyDescriptor(String propertyName,
Method getter,
Method setter,
Method indexedGetter,
Method indexedSetter)
Constructs a new instance of
IndexedPropertyDescriptor . |
PropertyDescriptor(String propertyName,
Class<?> beanClass) |
PropertyDescriptor(String propertyName,
Class<?> beanClass,
String getterName,
String setterName) |
PropertyDescriptor(String propertyName,
Method getter,
Method setter) |
Copyright © 2013. All Rights Reserved.