- java.lang.Object
- 
- java.beans.FeatureDescriptor
 
- 
- Direct Known Subclasses:
- BeanDescriptor,- EventSetDescriptor,- MethodDescriptor,- ParameterDescriptor,- PropertyDescriptor
 
 public class FeatureDescriptor extends Object The FeatureDescriptor class is the common baseclass for PropertyDescriptor, EventSetDescriptor, and MethodDescriptor, etc.It supports some common information that can be set and retrieved for any of the introspection descriptors. In addition it provides an extension mechanism so that arbitrary attribute/value pairs can be associated with a design feature. - Since:
- 1.1
 
- 
- 
Constructor SummaryConstructors Constructor Description FeatureDescriptor()Constructs aFeatureDescriptor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Enumeration<String>attributeNames()Gets an enumeration of the locale-independent names of this feature.StringgetDisplayName()Gets the localized display name of this feature.StringgetName()Gets the programmatic name of this feature.StringgetShortDescription()Gets the short description of this feature.ObjectgetValue(String attributeName)Retrieve a named attribute with this feature.booleanisExpert()The "expert" flag is used to distinguish between those features that are intended for expert users from those that are intended for normal users.booleanisHidden()The "hidden" flag is used to identify features that are intended only for tool use, and which should not be exposed to humans.booleanisPreferred()The "preferred" flag is used to identify features that are particularly important for presenting to humans.voidsetDisplayName(String displayName)Sets the localized display name of this feature.voidsetExpert(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.voidsetHidden(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.voidsetName(String name)Sets the programmatic name of this feature.voidsetPreferred(boolean preferred)The "preferred" flag is used to identify features that are particularly important for presenting to humans.voidsetShortDescription(String text)You can associate a short descriptive string with a feature.voidsetValue(String attributeName, Object value)Associate a named attribute with this feature.StringtoString()Returns a string representation of the object.
 
- 
- 
- 
Method Detail- 
getNamepublic String getName() Gets the programmatic name of this feature.- Returns:
- The programmatic name of the property/method/event
 
 - 
setNamepublic void setName(String name) Sets the programmatic name of this feature.- Parameters:
- name- The programmatic name of the property/method/event
 
 - 
getDisplayNamepublic String getDisplayName() Gets the localized display name of this feature.- Returns:
- The localized display name for the property/method/event. This defaults to the same as its programmatic name from getName.
 
 - 
setDisplayNamepublic void setDisplayName(String displayName) Sets the localized display name of this feature.- Parameters:
- displayName- The localized display name for the property/method/event.
 
 - 
isExpertpublic 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.- Returns:
- True if this feature is intended for use by experts only.
 
 - 
setExpertpublic 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.- Parameters:
- expert- True if this feature is intended for use by experts only.
 
 - 
isHiddenpublic boolean isHidden() The "hidden" flag is used to identify features that are intended only for tool use, and which should not be exposed to humans.- Returns:
- True if this feature should be hidden from human users.
 
 - 
setHiddenpublic 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.- Parameters:
- hidden- True if this feature should be hidden from human users.
 
 - 
isPreferredpublic boolean isPreferred() The "preferred" flag is used to identify features that are particularly important for presenting to humans.- Returns:
- True if this feature should be preferentially shown to human users.
- Since:
- 1.2
 
 - 
setPreferredpublic void setPreferred(boolean preferred) The "preferred" flag is used to identify features that are particularly important for presenting to humans.- Parameters:
- preferred- True if this feature should be preferentially shown to human users.
- Since:
- 1.2
 
 - 
getShortDescriptionpublic String getShortDescription() Gets the short description of this feature.- Returns:
- A localized short description associated with this property/method/event. This defaults to be the display name.
 
 - 
setShortDescriptionpublic void setShortDescription(String text) You can associate a short descriptive string with a feature. Normally these descriptive strings should be less than about 40 characters.- Parameters:
- text- A (localized) short description to be associated with this property/method/event.
 
 - 
setValuepublic void setValue(String attributeName, Object value) Associate a named attribute with this feature.- Parameters:
- attributeName- The locale-independent name of the attribute
- value- The value.
 
 - 
getValuepublic Object getValue(String attributeName) Retrieve a named attribute with this feature.- Parameters:
- attributeName- The locale-independent name of the attribute
- Returns:
- The value of the attribute. May be null if the attribute is unknown.
 
 - 
attributeNamespublic Enumeration<String> attributeNames() Gets an enumeration of the locale-independent names of this feature.- Returns:
- An enumeration of the locale-independent names of any attributes that have been registered with setValue.
 
 
- 
 
-