Example usage for Java java.beans BeanDescriptor fields, constructors, methods, implement or subclass
The text is from its open source code.
BeanDescriptor(Class> beanClass, Class> customizerClass) Create a BeanDescriptor for a bean that has a customizer. | |
BeanDescriptor(Class> beanClass) Create a BeanDescriptor for a bean that doesn't have a customizer. | |
BeanDescriptor(BeanDescriptor old) |
Class> | getCustomizerClass() Gets the Class object for the bean's customizer. |
String | getDisplayName() Gets the localized display name of this feature. |
String | getShortDescription() Gets the short description of this feature. |
Object | getValue(String attributeName) Retrieve a named attribute with this feature. |
boolean | isExpert() The "expert" flag is used to distinguish between those features that are intended for expert users from those that are intended for normal users. |
void | setDisplayName(String displayName) Sets the localized display name of this feature. |
void | setShortDescription(String text) You can associate a short descriptive string with a feature. |
void | setValue(String attributeName, Object value) Associate a named attribute with this feature. |