June 1997
Intermediate to advanced
318 pages
8h 17m
English
Class java.beans.SimpleBeanInfo
SimpleBeanInfo
is a support class designed to make it
easier to implement BeanInfo classes. Its default
implementation provides no information. The various feature set
methods can be overridden to provide explicit information on their
associated feature sets. When the Instrospector
encounters the default null values provided by the
methods of this class, it will apply low-level introspection and
design patterns to analyze the target Bean.
public class SimpleBeanInfo implements BeanInfo
{
// constructors
public SimpleBeanInfo();
// methods
public BeanInfo[] getAdditionalBeanInfo();
public BeanDescriptor getBeanDescriptor();
public int getDefaultPropertyIndex();
public int getDefaultEventIndex();
public EventSetDescriptor[] getEventSetDescriptors();
public java.awt.Image getIcon(int iconKind);
public MethodDescriptor[] getMethodDescriptors();
public PropertyDescriptor[] getPropertyDescriptors();
public java.awt.Image loadImage(String resourceName);
}
BeanDescriptor, BeanInfo,
EventSetDescriptor,
MethodDescriptor,
PropertyDescriptor
Read now
Unlock full access