Searched refs:Introspector (Results 1 - 25 of 56) sorted by relevance

123

/openjdk7/jdk/test/java/beans/Introspector/4168475/
H A DTest4168475.java36 import java.beans.Introspector;
44 Introspector.setBeanInfoSearchPath(PATH);
45 BeanInfo info = Introspector.getBeanInfo(Component.class);
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4144543.java32 import java.beans.Introspector;
41 Introspector.getBeanInfo(type);
53 * The Introspector expects the return type of the getter method to
56 * the Introspector will find it first and recognize that it is not
H A DTest6277246.java34 import java.beans.Introspector;
43 BeanInfo info = Introspector.getBeanInfo(type);
H A DTest6868189.java32 import java.beans.Introspector;
43 PropertyDescriptor[] pds = Introspector.getBeanInfo(Enumeration.class).getPropertyDescriptors();
H A DTest7195106.java34 import java.beans.Introspector;
40 BeanInfo info = Introspector.getBeanInfo(My.class);
H A DTest6660539.java33 import java.beans.Introspector;
58 BeanInfo info = Introspector.getBeanInfo(Test6660539.class);
H A DTest6963811.java27 * @summary Tests deadlock in Introspector
31 import java.beans.Introspector;
46 Introspector.getBeanInfo(
H A DTest6447751.java33 import java.beans.Introspector;
50 actual = Introspector.getBeanInfo(type).getBeanDescriptor().getCustomizerClass();
H A DTest6723447.java33 import java.beans.Introspector;
66 return Introspector.getBeanInfo(type).getPropertyDescriptors();
H A DTest7192955.java32 import java.beans.Introspector;
49 PropertyDescriptor[] pds = Introspector.getBeanInfo(MyBean.class, BaseBean.class).getPropertyDescriptors();
H A DTest7193977.java36 import java.beans.Introspector;
124 this.info = Introspector.getBeanInfo(type, Introspector.IGNORE_IMMEDIATE_BEANINFO);
H A DBeanUtils.java28 import java.beans.Introspector;
50 return Introspector.getBeanInfo(type).getBeanDescriptor();
64 return Introspector.getBeanInfo(type).getPropertyDescriptors();
78 return Introspector.getBeanInfo(type).getEventSetDescriptors();
/openjdk7/jdk/test/java/beans/Introspector/4520754/
H A DTest4520754.java41 import java.beans.Introspector;
79 Introspector.flushCaches();
86 info = Introspector.getBeanInfo(type);
104 String[] oldPath = Introspector.getBeanInfoSearchPath();
106 Introspector.setBeanInfoSearchPath(newPath);
108 Introspector.setBeanInfoSearchPath(oldPath);
114 Introspector.flushCaches();
/openjdk7/jdk/test/java/beans/Introspector/6380849/
H A DTestBeanInfo.java40 import java.beans.Introspector;
60 actual = Introspector.getBeanInfo(type);
80 Introspector.flushCaches();
87 Introspector.setBeanInfoSearchPath(SEARCH_PATH);
88 Introspector.flushCaches();
/openjdk7/jdk/test/java/beans/Beans/
H A DTest4080522.java30 * Introspector.setBeanInfoSearchPath
36 import java.beans.Introspector;
62 Introspector.setBeanInfoSearchPath(path);
63 throw new Error("Introspector.setBeanInfoSearchPath should throw SecurityException");
83 Introspector.setBeanInfoSearchPath(path);
/openjdk7/jdk/test/java/beans/Performance/
H A DTest7184799.java27 * @summary Tests just a benchmark of Introspector.getBeanInfo(Class) performance
32 import java.beans.Introspector;
66 Introspector.getBeanInfo(type);
H A DTestIntrospector.java33 import java.beans.Introspector;
112 Introspector.flushCaches();
118 Introspector.flushCaches();
147 BeanInfo info = Introspector.getBeanInfo(type);
/openjdk7/jdk/test/java/beans/Introspector/4750368/
H A DTest4750368.java27 * @summary Tests for class name collision in Introspector
35 import java.beans.Introspector;
49 PropertyDescriptor[] pds = Introspector.getBeanInfo(type).getPropertyDescriptors();
/openjdk7/jdk/test/java/beans/Introspector/memory/
H A DTest4508780.java27 * @summary Tests shared access to the Introspector cache
32 import java.beans.Introspector;
61 Introspector.flushCaches();
127 return Introspector.getBeanInfo(type).getPropertyDescriptors();
H A DTest4809008.java34 import java.beans.Introspector;
56 BeanInfo info = Introspector.getBeanInfo(type);
/openjdk7/jdk/make/tools/swing-beans/beaninfo/
H A DSwingBeanInfoBase.java73 superBeanInfo = Introspector.getBeanInfo(superClass);
/openjdk7/jdk/test/java/beans/Introspector/7064279/
H A DTest7064279.java27 * @summary Tests that Introspector does not have strong references to context class loader
31 import java.beans.Introspector;
73 Introspector.getBeanInfo(type);
/openjdk7/jdk/src/share/classes/java/beans/
H A DIndexedPropertyDescriptor.java68 Introspector.GET_PREFIX + NameGenerator.capitalize(propertyName),
69 Introspector.SET_PREFIX + NameGenerator.capitalize(propertyName),
70 Introspector.GET_PREFIX + NameGenerator.capitalize(propertyName),
71 Introspector.SET_PREFIX + NameGenerator.capitalize(propertyName));
184 String nextMethodName = Introspector.GET_PREFIX + getBaseName();
188 indexedReadMethodName = Introspector.IS_PREFIX + getBaseName();
195 indexedReadMethod = Introspector.findMethod(cls, indexedReadMethodName, 1, args);
199 indexedReadMethod = Introspector.findMethod(cls, indexedReadMethodName, 1, args);
269 indexedWriteMethodName = Introspector.SET_PREFIX + getBaseName();
273 indexedWriteMethod = Introspector
[all...]
H A DPropertyDescriptor.java71 Introspector.IS_PREFIX + NameGenerator.capitalize(propertyName),
72 Introspector.SET_PREFIX + NameGenerator.capitalize(propertyName));
114 // See Introspector.getTargetPropertyInfo() method.
116 this.bound = null != Introspector.findMethod(beanClass, "addPropertyChangeListener", args.length, args);
158 setName(Introspector.decapitalize(base));
213 String nextMethodName = Introspector.GET_PREFIX + getBaseName();
217 readMethodName = Introspector.IS_PREFIX + getBaseName();
228 readMethod = Introspector.findMethod(cls, readMethodName, 0);
231 readMethod = Introspector.findMethod(cls, readMethodName, 0);
293 writeMethodName = Introspector
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DJMX.java28 import com.sun.jmx.mbeanserver.Introspector;
398 Introspector.testComplianceMXBeanInterface(interfaceClass);
401 Introspector.testComplianceMBeanInterface(interfaceClass);

Completed in 93 milliseconds

123