Uses of Interface
java.beans.BeanInfo

Packages that use BeanInfo
java.beans   
 

Uses of BeanInfo in java.beans
 

Classes in java.beans that implement BeanInfo
(package private)  class GenericBeanInfo
          Package private implementation support class for Introspector's internal use.
 class SimpleBeanInfo
          This is a support class to make it easier for people to provide BeanInfo classes.
 

Fields in java.beans declared as BeanInfo
private  BeanInfo Introspector.informant
           
private  BeanInfo Introspector.superBeanInfo
           
private  BeanInfo[] Introspector.additionalBeanInfo
           
private  BeanInfo GenericBeanInfo.targetBeanInfo
           
 

Methods in java.beans that return BeanInfo
 BeanInfo[] 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.
 BeanInfo[] SimpleBeanInfo.getAdditionalBeanInfo()
          Claim there are no other relevant BeanInfo objects.
static BeanInfo Introspector.getBeanInfo(Class beanClass)
          Introspect on a Java bean and learn about all its properties, exposed methods, and events.
static BeanInfo Introspector.getBeanInfo(Class beanClass, int flags)
          Introspect on a Java bean and learn about all its properties, exposed methods, and events, subnject to some comtrol flags.
static BeanInfo Introspector.getBeanInfo(Class beanClass, Class stopClass)
          Introspect on a Java bean and learn all about its properties, exposed methods, below a given "stop" point.
private static BeanInfo Introspector.findInformant(Class beanClass)
           
 

Constructors in java.beans with parameters of type BeanInfo
GenericBeanInfo.GenericBeanInfo(BeanDescriptor beanDescriptor, EventSetDescriptor[] events, int defaultEvent, PropertyDescriptor[] properties, int defaultProperty, MethodDescriptor[] methods, BeanInfo targetBeanInfo)