API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.beans. BeanInfo View Source
Author(s)
Since
Version
Serial
Hierarchy
 BeanInfo
Subinterfaces
Description
public interface BeanInfo
  A bean implementor who wishes to provide explicit information about their bean may provide a BeanInfo class that implements this BeanInfo interface and provides explicit information about the methods, properties, events, etc, of their bean.
See also:   
Methods
Hide/Show inherited methods
public BeanInfo getAdditionalBeanInfo ()
  This method allows a BeanInfo object to return an arbitrary collection of other BeanInfo objects that provide additional information on the current bean.
public BeanDescriptor getBeanDescriptor ()
  Gets the beans BeanDescriptor.
public int getDefaultEventIndex ()
  A bean may have a "default" event that is the event that will mostly commonly be used by humans when using the bean.
public int getDefaultPropertyIndex ()
  A bean may have a "default" property that is the property that will mostly commonly be initially chosen for update by human's who are customizing the bean.
public EventSetDescriptor getEventSetDescriptors ()
  Gets the beans EventSetDescriptors.
public Image getIcon (int iconKind)
  This method returns an image object that can be used to represent the bean in toolboxes, toolbars, etc.
public MethodDescriptor getMethodDescriptors ()
  Gets the beans MethodDescriptors.
public PropertyDescriptor getPropertyDescriptors ()
  Gets the beans PropertyDescriptors.
Fields
Hide/Show inherited fields
publicfinalstatic int ICON_COLOR_16x16 = "1"
Constant to indicate a 16 x 16 color icon.
publicfinalstatic int ICON_COLOR_32x32 = "2"
Constant to indicate a 32 x 32 color icon.
publicfinalstatic int ICON_MONO_16x16 = "3"
Constant to indicate a 16 x 16 monochrome icon.
publicfinalstatic int ICON_MONO_32x32 = "4"
Constant to indicate a 32 x 32 monochrome icon.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar