This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.beans
class FeatureDescriptor

java.lang.Object extended by 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.


Constructor Summary

          Constructs a FeatureDescriptor.
 
Method Summary
 Enumeration

          Gets an enumeration of the locale-independent names of this feature.
 String

          Gets the localized display name of this feature.
 String

          Gets the programmatic name of this feature.
 String

          Gets the short description of this feature.
 Object
getValue(String attributeName)

          Retrieve a named attribute with this feature.
 boolean

          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

          The "hidden" flag is used to identify features that are intended only for tool use, and which should not be exposed to humans.
 boolean

          The "preferred" flag is used to identify features that are particularly important for presenting to humans.
 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

          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

          You can associate a short descriptive string with a feature.
 void
setValue(String attributeName, Object value)

          Associate a named attribute with this feature.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FeatureDescriptor

public FeatureDescriptor()
Constructs a FeatureDescriptor.

Method Detail

attributeNames

public Enumeration 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.

getDisplayName

public 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.

getName

public String getName()
Gets the programmatic name of this feature.

Returns:
The programmatic name of the property/method/event

getShortDescription

public 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.

getValue

public 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.

isExpert

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.

Returns:
True if this feature is intended for use by experts only.

isHidden

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.

Returns:
True if this feature should be hidden from human users.

isPreferred

public 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.

setDisplayName

public void setDisplayName(String displayName)
Sets the localized display name of this feature.

Parameters:
displayName - The localized display name for the property/method/event.

setExpert

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.

Parameters:
expert - True if this feature is intended for use by experts only.

setHidden

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.

Parameters:
hidden - True if this feature should be hidden from human users.

setName

public void setName(String name)
Sets the programmatic name of this feature.

Parameters:
name - The programmatic name of the property/method/event

setPreferred

public 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.

setShortDescription

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.

Parameters:
text - A (localized) short description to be associated with this property/method/event.

setValue

public 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.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.