|
JIDE 3.5.15 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.jidesoft.introspector.IntrospectorManager
public class IntrospectorManager
A global object that can register BeanIntrospector with a type and a IntrospectorContext.
| Constructor Summary | |
|---|---|
IntrospectorManager()
|
|
| Method Summary | |
|---|---|
static void |
addRegistrationListener(RegistrationListener l)
Adds a listener to the list that's notified each time a change to the manager occurs. |
static BeanIntrospector |
getBeanIntrospector(Class<?> clazz)
Gets the registered BeanIntrospector using default context. |
static BeanIntrospector |
getBeanIntrospector(Class<?> clazz,
IntrospectorContext context)
Gets the registered BeanIntrospector. |
static Introspector |
getIntrospector(Class<?> clazz)
Gets the registered Introspector using default context. |
static Introspector |
getIntrospector(Class<?> clazz,
IntrospectorContext context)
Gets the registered Introspector. |
static IntrospectorContext[] |
getIntrospectorContexts(Class<?> clazz)
Gets the available IntrospectorContexts registered with the class. |
static RegistrationListener[] |
getRegistrationListeners()
Returns an array of all the registration listeners registered on this manager. |
static void |
initDefaultBeanIntrospector()
Deprecated. use initDefaultIntrospector() |
static void |
initDefaultIntrospector()
Initial the default Introspectors. |
static void |
registerBeanIntrospector(Class<?> clazz,
BeanIntrospector introspector)
Deprecated. Please use registerIntrospector(Class, Introspector) |
static void |
registerBeanIntrospector(Class<?> clazz,
BeanIntrospector introspector,
BeanIntrospectorContext context)
Deprecated. Please use registerIntrospector(Class, Introspector, IntrospectorContext) |
static void |
registerBeanIntrospector(Class<?> clazz,
BeanIntrospectorFactory introspectorFactory)
Deprecated. Please use registerIntrospector(Class, IntrospectorFactory, IntrospectorContext) |
static void |
registerBeanIntrospector(Class<?> clazz,
BeanIntrospectorFactory beanIntrospectorFactory,
BeanIntrospectorContext context)
Deprecated. Please use registerIntrospector(Class, IntrospectorFactory, IntrospectorContext) |
static void |
registerIntrospector(Class<?> clazz,
Introspector introspector)
Registers a Introspector with a class and default context. |
static void |
registerIntrospector(Class<?> clazz,
IntrospectorFactory introspectorFactory)
Registers a Introspector with a class and default context. |
static void |
registerIntrospector(Class<?> clazz,
IntrospectorFactory introspectorFactory,
IntrospectorContext context)
Registers a Introspector with a class and a context. |
static void |
registerIntrospector(Class<?> clazz,
Introspector introspector,
IntrospectorContext context)
Registers a Introspector with a class and a context. |
static void |
removeRegistrationListener(RegistrationListener l)
Removes a listener from the list that's notified each time a change to the manager occurs. |
static void |
unregisterAllIntrospectors()
Unregisters all Introspectors. |
static void |
unregisterAllIntrospectors(Class<?> clazz)
Unregisters all Introspectors which register with the class. |
static void |
unregisterBeanIntrospector(Class<?> clazz)
Deprecated. Please use unregisterIntrospector(Class) |
static void |
unregisterBeanIntrospector(Class<?> clazz,
BeanIntrospectorContext context)
Deprecated. Please use unregisterIntrospector(Class, IntrospectorContext) |
static void |
unregisterIntrospector(Class<?> clazz)
Unregisters the Introspector which registers with the class and the default context. |
static void |
unregisterIntrospector(Class<?> clazz,
IntrospectorContext context)
Unregisters the Introspector which registers with the class and the context. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public IntrospectorManager()
| Method Detail |
|---|
@Deprecated
public static void registerBeanIntrospector(Class<?> clazz,
BeanIntrospector introspector,
BeanIntrospectorContext context)
registerIntrospector(Class, Introspector, IntrospectorContext)
clazz - the typeintrospector - the BeanIntrospectorcontext - the BeanIntrospector context
@Deprecated
public static void registerBeanIntrospector(Class<?> clazz,
BeanIntrospectorFactory beanIntrospectorFactory,
BeanIntrospectorContext context)
registerIntrospector(Class, IntrospectorFactory, IntrospectorContext)
clazz - the typebeanIntrospectorFactory - the BeanIntrospector factorycontext - the BeanIntrospector context
@Deprecated
public static void registerBeanIntrospector(Class<?> clazz,
BeanIntrospector introspector)
registerIntrospector(Class, Introspector)
clazz - the typeintrospector - the BeanIntrospector
@Deprecated
public static void registerBeanIntrospector(Class<?> clazz,
BeanIntrospectorFactory introspectorFactory)
registerIntrospector(Class, IntrospectorFactory, IntrospectorContext)
clazz - the typeintrospectorFactory - the BeanIntrospector factory
@Deprecated
public static void unregisterBeanIntrospector(Class<?> clazz,
BeanIntrospectorContext context)
unregisterIntrospector(Class, IntrospectorContext)
clazz - the type of which the BeanIntrospector will be unregistered.context - the BeanIntrospector context@Deprecated public static void unregisterBeanIntrospector(Class<?> clazz)
unregisterIntrospector(Class)
clazz - the type of which the BeanIntrospector will be unregistered.
public static BeanIntrospector getBeanIntrospector(Class<?> clazz,
IntrospectorContext context)
clazz - the type of which the BeanIntrospector will be unregistered.context - the BeanIntrospector context
public static BeanIntrospector getBeanIntrospector(Class<?> clazz)
clazz - the type of which the BeanIntrospector will be unregistered.
@Deprecated public static void initDefaultBeanIntrospector()
initDefaultIntrospector()
public static void registerIntrospector(Class<?> clazz,
Introspector introspector,
IntrospectorContext context)
clazz - the typeintrospector - the Introspectorcontext - the Introspector context
public static void registerIntrospector(Class<?> clazz,
IntrospectorFactory introspectorFactory,
IntrospectorContext context)
clazz - the typeintrospectorFactory - the Introspector factorycontext - the Introspector context
public static void registerIntrospector(Class<?> clazz,
Introspector introspector)
clazz - the typeintrospector - the Introspector
public static void registerIntrospector(Class<?> clazz,
IntrospectorFactory introspectorFactory)
clazz - the typeintrospectorFactory - the Introspector factory
public static void unregisterIntrospector(Class<?> clazz,
IntrospectorContext context)
clazz - the type of which the Introspector will be unregistered.context - the Introspector contextpublic static void unregisterIntrospector(Class<?> clazz)
clazz - the type of which the Introspector will be unregistered.public static void unregisterAllIntrospectors(Class<?> clazz)
clazz - the type of which the Introspectors will be unregistered.public static void unregisterAllIntrospectors()
public static Introspector getIntrospector(Class<?> clazz,
IntrospectorContext context)
clazz - the type of which the Introspector will be unregistered.context - the Introspector context
public static Introspector getIntrospector(Class<?> clazz)
clazz - the type of which the Introspector will be unregistered.
public static void addRegistrationListener(RegistrationListener l)
l - the RegistrationListenerpublic static void removeRegistrationListener(RegistrationListener l)
l - the RegistrationListenerpublic static RegistrationListener[] getRegistrationListeners()
RegistrationListeners or an empty array if no registration
listeners are currently registeredaddRegistrationListener(com.jidesoft.utils.RegistrationListener),
removeRegistrationListener(com.jidesoft.utils.RegistrationListener)public static IntrospectorContext[] getIntrospectorContexts(Class<?> clazz)
clazz - the class.
public static void initDefaultIntrospector()
|
JIDE 3.5.15 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||