Class FeatureDescriptor
- Direct Known Subclasses:
-
BeanDescriptor
,EventSetDescriptor
,MethodDescriptor
,ParameterDescriptor
,PropertyDescriptor
public class FeatureDescriptor extends Object
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 Summary
Constructor | Description |
---|---|
FeatureDescriptor() |
Constructs a FeatureDescriptor . |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
Enumeration<String> |
attributeNames() |
Gets an enumeration of the locale-independent names of this feature. |
String |
getDisplayName() |
Gets the localized display name of this feature. |
String |
getName() |
Gets the programmatic name of this feature. |
String |
getShortDescription() |
Gets the short description of this feature. |
Object |
getValue |
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. |
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. |
boolean |
isPreferred() |
The "preferred" flag is used to identify features that are particularly important for presenting to humans. |
void |
setDisplayName |
Sets the localized display name of this feature. |
void |
setExpert |
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 |
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 |
Sets the programmatic name of this feature. |
void |
setPreferred |
The "preferred" flag is used to identify features that are particularly important for presenting to humans. |
void |
setShortDescription |
You can associate a short descriptive string with a feature. |
void |
setValue |
Associate a named attribute with this feature. |
String |
toString() |
Returns a string representation of the object. |
Constructor Details
FeatureDescriptor
public FeatureDescriptor()
FeatureDescriptor
.Method Details
getName
public String getName()
- Returns:
- The programmatic name of the property/method/event
setName
public void setName(String name)
- Parameters:
-
name
- The programmatic name of the property/method/event
getDisplayName
public String getDisplayName()
- Returns:
- The localized display name for the property/method/event. This defaults to the same as its programmatic name from getName.
setDisplayName
public void setDisplayName(String displayName)
- Parameters:
-
displayName
- The localized display name for the property/method/event.
isExpert
public boolean isExpert()
- Returns:
- True if this feature is intended for use by experts only.
setExpert
public void setExpert(boolean expert)
- Parameters:
-
expert
- True if this feature is intended for use by experts only.
isHidden
public boolean isHidden()
- Returns:
- True if this feature should be hidden from human users.
setHidden
public void setHidden(boolean hidden)
- Parameters:
-
hidden
- True if this feature should be hidden from human users.
isPreferred
public boolean isPreferred()
- Returns:
- True if this feature should be preferentially shown to human users.
- Since:
- 1.2
setPreferred
public void setPreferred(boolean preferred)
- Parameters:
-
preferred
- True if this feature should be preferentially shown to human users. - Since:
- 1.2
getShortDescription
public String getShortDescription()
- Returns:
- A localized short description associated with this property/method/event. This defaults to be the display name.
setShortDescription
public void setShortDescription(String text)
- Parameters:
-
text
- A (localized) short description to be associated with this property/method/event.
setValue
public void setValue(String attributeName, Object value)
- Parameters:
-
attributeName
- The locale-independent name of the attribute -
value
- The value.
getValue
public Object getValue(String attributeName)
- Parameters:
-
attributeName
- The locale-independent name of the attribute - Returns:
- The value of the attribute. May be null if the attribute is unknown.
attributeNames
public Enumeration<String> attributeNames()
- Returns:
- An enumeration of the locale-independent names of any attributes that have been registered with setValue.
toString
public String toString()
© 1993, 2021, 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.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/beans/FeatureDescriptor.html