Example usage for Java java.beans FeatureDescriptor fields, constructors, methods, implement or subclass
The text is from its open source code.
FeatureDescriptor() Constructs a FeatureDescriptor . |
String | getName() Gets the programmatic name of this feature. |
void | setDisplayName(String displayName) Sets the localized display name of this feature. |
void | setExpert(boolean expert) The "expert" flag is used to distinguish between features that are intended for expert users from those that are intended for normal users. |
void | setHidden(boolean hidden) The "hidden" flag is used to identify features that are intended only for tool use, and which should not be exposed to humans. |
void | setName(String name) Sets the programmatic name of this feature. |
void | setPreferred(boolean preferred) The "preferred" flag is used to identify features that are particularly important for presenting to humans. |
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. |