Uses of Class java.beans.IntrospectionException

Uses in package java.beans

Constructors which throw type java.beans.IntrospectionException

EventSetDescriptor.EventSetDescriptor(Class eventSourceClass, String eventSetName, Class listenerType, String listenerMethodName)
Creates a new EventSetDescriptor<.>
EventSetDescriptor.EventSetDescriptor(Class eventSourceClass, String eventSetName, Class listenerType, String[] listenerMethodNames, String addListenerMethodName, String removeListenerMethodName)
Creates a new EventSetDescriptor.
EventSetDescriptor.EventSetDescriptor(Class eventSourceClass, String eventSetName, Class listenerType, String[] listenerMethodNames, String addListenerMethodName, String removeListenerMethodName, String getListenerMethodName)
Creates a new EventSetDescriptor.
EventSetDescriptor.EventSetDescriptor(String eventSetName, Class listenerType, MethodDescriptor[] listenerMethodDescriptors, Method addListenerMethod, Method removeListenerMethod)
Creates a new EventSetDescriptor.
EventSetDescriptor.EventSetDescriptor(String eventSetName, Class listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod)
Creates a new EventSetDescriptor.
EventSetDescriptor.EventSetDescriptor(String eventSetName, Class listenerType, Method[] listenerMethods, Method addListenerMethod, Method removeListenerMethod, Method getListenerMethod)
Creates a new EventSetDescriptor.

This variant of the constructor allows you to specify the names of the methods and adds no new constraints on top of the rules already described at the top of the class.

Create a new IndexedPropertyDescriptor by introspection.
IndexedPropertyDescriptor.IndexedPropertyDescriptor(String name, Class beanClass, String getMethodName, String setMethodName, String getIndexName, String setIndexName)
Create a new IndexedPropertyDescriptor by introspection.
IndexedPropertyDescriptor.IndexedPropertyDescriptor(String name, Method getMethod, Method setMethod, Method getIndex, Method setIndex)
Create a new PropertyDescriptor using explicit Methods.
Create a new PropertyDescriptor by introspection.
PropertyDescriptor.PropertyDescriptor(String name, Class beanClass, String getMethodName, String setMethodName)
Create a new PropertyDescriptor by introspection.
PropertyDescriptor.PropertyDescriptor(String name, Method readMethod, Method writeMethod)
Create a new PropertyDescriptor using explicit Methods.

Methods which throw type java.beans.IntrospectionException

BeanInfo
Introspector.getBeanInfo(Class beanClass)
Get the BeanInfo for class beanClass, first by looking for explicit information, next by using standard design patterns to determine information about the class.
BeanInfo
Introspector.getBeanInfo(Class beanClass, Class stopClass)
Get the BeanInfo for class beanClass, first by looking for explicit information, next by using standard design patterns to determine information about the class.
BeanInfo
Introspector.getBeanInfo(Class beanClass, int flag)
Returns a instance for the given Bean class where a flag controls the usage of explicit BeanInfo class to retrieve that information.
void
Sets the method that is used to read an indexed property.
void
Sets the method that is used to write an indexed property.
void
Sets the read method.
The read method is used to retrieve the value of a property.
void
Sets the write method.
The write method is used to set the value of a property.