Class BeanDescriptor
java.lang.Object
java.beans.FeatureDescriptor
java.beans.BeanDescriptor
A BeanDescriptor provides global information about a "bean",
including its Java class, its displayName, etc.
This is one of the kinds of descriptor returned by a BeanInfo object, which also returns descriptors for properties, method, and events.
- Since:
- 1.1
-
Constructor Summary
ConstructorsConstructorDescriptionBeanDescriptor(Class<?> beanClass) Create a BeanDescriptor for a bean that doesn't have a customizer.BeanDescriptor(Class<?> beanClass, Class<?> customizerClass) Create a BeanDescriptor for a bean that has a customizer. -
Method Summary
Methods declared in class FeatureDescriptor
attributeNames, getDisplayName, getName, getShortDescription, getValue, isExpert, isHidden, isPreferred, setDisplayName, setExpert, setHidden, setName, setPreferred, setShortDescription, setValue, toStringModifier and TypeMethodDescriptionGets an enumeration of the locale-independent names of this feature.Gets the localized display name of this feature.getName()Gets the programmatic name of this feature.Gets the short description of this feature.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.booleanThe "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.voidSets 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.voidAssociate a named attribute with this feature.toString()Returns a string representation of the object.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
BeanDescriptor
Create a BeanDescriptor for a bean that doesn't have a customizer.- Parameters:
beanClass- The Class object of the Java class that implements the bean. For example sun.beans.OurButton.class.
-
BeanDescriptor
Create a BeanDescriptor for a bean that has a customizer.- Parameters:
beanClass- The Class object of the Java class that implements the bean. For example sun.beans.OurButton.class.customizerClass- The Class object of the Java class that implements the bean's Customizer. For example sun.beans.OurButtonCustomizer.class.
-
-
Method Details
-
getBeanClass
Gets the bean's Class object.- Returns:
- The Class object for the bean.
-
getCustomizerClass
Gets the Class object for the bean's customizer.- Returns:
- The Class object for the bean's customizer. This may be null if the bean doesn't have a customizer.
-