SimpleBeanInfo

  • SimpleBeanInfo is a convenience class for creating blank bean information objects.

  • It implements the BeanInfo interface, providing basic introspection capabilities for Java Beans.

  • This class allows developers to selectively override methods to supply specific bean information like descriptors for properties, methods, and events.

  • It inherits methods from java.lang.Object and java.beans.BeanInfo, offering functionalities for object manipulation and bean introspection.

  • Developers can extend this class to provide detailed information about their custom beans, aiding visual development tools.

public class SimpleBeanInfo extends Object
implements BeanInfo

Inherited Constant Summary

Public Constructor Summary

Public Method Summary

BeanInfo[]
BeanDescriptor
int
int
EventSetDescriptor[]
MethodDescriptor[]
PropertyDescriptor[]

Inherited Method Summary

Public Constructors

public SimpleBeanInfo ()

Public Methods

public BeanInfo[] getAdditionalBeanInfo ()

public BeanDescriptor getBeanDescriptor ()

public int getDefaultEventIndex ()

public int getDefaultPropertyIndex ()

public EventSetDescriptor[] getEventSetDescriptors ()

public MethodDescriptor[] getMethodDescriptors ()

public PropertyDescriptor[] getPropertyDescriptors ()