public class BeanDescriptor extends FeatureDescriptor
| Constructor and Description |
|---|
BeanDescriptor(java.lang.Class<?> beanClass)
Constructs an instance with the bean's
Class. |
BeanDescriptor(java.lang.Class<?> beanClass,
java.lang.Class<?> customizerClass)
Constructs an instance with the bean's
Class and a customizer
Class. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Class<?> |
getBeanClass()
Gets the bean's
Class. |
java.lang.Class<?> |
getCustomizerClass()
Gets the bean's customizer
Class/ |
attributeNames, getDisplayName, getName, getShortDescription, getValue, isExpert, isHidden, isPreferred, setDisplayName, setExpert, setHidden, setName, setPreferred, setShortDescription, setValuepublic BeanDescriptor(java.lang.Class<?> beanClass,
java.lang.Class<?> customizerClass)
Constructs an instance with the bean's Class and a customizer
Class. The descriptor's FeatureDescriptor.getName() is set as the
unqualified name of the beanClass.
beanClass - The bean's Class.customizerClass - The bean's customizer Class.public BeanDescriptor(java.lang.Class<?> beanClass)
Constructs an instance with the bean's Class. The descriptor's
FeatureDescriptor.getName() is set as the unqualified name of the
beanClass.
beanClass - The bean's Class.