Class java.beans.SimpleBeanInfo
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.beans.SimpleBeanInfo

java.lang.Object
   |
   +----java.beans.SimpleBeanInfo

public class SimpleBeanInfo
extends Object
implements BeanInfo
This is a support class to make it easier for people to provide BeanInfo classes.

It defaults to providing "noop" information, and can be selectively overriden to provide more explicit information on chosen topics. When the introspector sees the "noop" values, it will apply low level introspection and design patterns to automatically analyze the target bean.


Constructor Index

 o SimpleBeanInfo()

Method Index

 o getAdditionalBeanInfo()
Claim there are no other relevant BeanInfo objects.
 o getBeanDescriptor()
Deny knowledge about the class and customizer of the bean.
 o getDefaultEventIndex()
Deny knowledge of a default event.
 o getDefaultPropertyIndex()
Deny knowledge of a default property.
 o getEventSetDescriptors()
Deny knowledge of event sets.
 o getMethodDescriptors()
Deny knowledge of methods.
 o getPropertyDescriptors()
Deny knowledge of properties.

Constructors

 o SimpleBeanInfo
  public SimpleBeanInfo()

Methods

 o getBeanDescriptor
  public BeanDescriptor getBeanDescriptor()
Deny knowledge about the class and customizer of the bean. You can override this if you wish to provide explicit info.
 o getPropertyDescriptors
  public PropertyDescriptor[] getPropertyDescriptors()
Deny knowledge of properties. You can override this if you wish to provide explicit property info.
 o getDefaultPropertyIndex
  public int getDefaultPropertyIndex()
Deny knowledge of a default property. You can override this if you wish to define a default property for the bean.
 o getEventSetDescriptors
  public EventSetDescriptor[] getEventSetDescriptors()
Deny knowledge of event sets. You can override this if you wish to provide explicit event set info.
 o getDefaultEventIndex
  public int getDefaultEventIndex()
Deny knowledge of a default event. You can override this if you wish to define a default event for the bean.
 o getMethodDescriptors
  public MethodDescriptor[] getMethodDescriptors()
Deny knowledge of methods. You can override this if you wish to provide explicit method info.
 o getAdditionalBeanInfo
  public BeanInfo[] getAdditionalBeanInfo()
Claim there are no other relevant BeanInfo objects. You may override this if you want to (for example) return a BeanInfo for a base class.

All Packages  Class Hierarchy  This Package  Previous  Next  Index