Methods Summary |
---|
public java.beans.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.
If there are conflicts or overlaps between the information provided
by different BeanInfo objects, then the current BeanInfo takes precedence
over the getAdditionalBeanInfo objects, and later elements in the array
take precedence over earlier ones.
|
public java.beans.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 java.beans.EventSetDescriptor[] | getEventSetDescriptors()Gets the beans EventSetDescriptor s.
|
public java.awt.Image | getIcon(int iconKind)This method returns an image object that can be used to
represent the bean in toolboxes, toolbars, etc. Icon images
will typically be GIFs, but may in future include other formats.
Beans aren't required to provide icons and may return null from
this method.
There are four possible flavors of icons (16x16 color,
32x32 color, 16x16 mono, 32x32 mono). If a bean choses to only
support a single icon we recommend supporting 16x16 color.
We recommend that icons have a "transparent" background
so they can be rendered onto an existing background.
|
public java.beans.MethodDescriptor[] | getMethodDescriptors()Gets the beans MethodDescriptor s.
|
public java.beans.PropertyDescriptor[] | getPropertyDescriptors()Gets the beans PropertyDescriptor s.
|