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.
public FeatureDescriptor()
Constructs a FeatureDescriptor
.
public String getName()
Gets the programmatic name of this feature.
public void setName(String name)
Sets the programmatic name of this feature.
name
- The programmatic name of the property/method/eventpublic String getDisplayName()
Gets the localized display name of this feature.
public void setDisplayName(String displayName)
Sets the localized display name of this feature.
displayName
- The localized display name for the property/method/event.public 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.
public 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.
expert
- True if this feature is intended for use by experts only.public 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.
public 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.
hidden
- True if this feature should be hidden from human users.public boolean isPreferred()
The "preferred" flag is used to identify features that are particularly important for presenting to humans.
public void setPreferred(boolean preferred)
The "preferred" flag is used to identify features that are particularly important for presenting to humans.
preferred
- True if this feature should be preferentially shown to human users.public String getShortDescription()
Gets the short description of this feature.
public 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.
text
- A (localized) short description to be associated with this property/method/event.public void setValue(String attributeName, Object value)
Associate a named attribute with this feature.
attributeName
- The locale-independent name of the attributevalue
- The value.public Object getValue(String attributeName)
Retrieve a named attribute with this feature.
attributeName
- The locale-independent name of the attributepublic Enumeration<String> attributeNames()
Gets an enumeration of the locale-independent names of this feature.
public String toString()
Returns a string representation of the object.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.