Searched defs:getBeanInfo (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/beans/Introspector/4520754/
H A DTest4520754.java71 BeanInfo info = getBeanInfo(mark, type);
82 private static BeanInfo getBeanInfo(Boolean mark, Class type) { method in class:Test4520754
86 info = Introspector.getBeanInfo(type);
107 BeanInfo info = getBeanInfo(Boolean.TRUE, type);
/openjdk7/jdk/src/share/classes/java/beans/
H A DThreadGroupContext.java95 BeanInfo getBeanInfo(Class<?> type) { method in class:ThreadGroupContext
H A DIntrospector.java94 // Flags that can be used to control getBeanInfo:
151 public static BeanInfo getBeanInfo(Class<?> beanClass) method in class:Introspector
155 return (new Introspector(beanClass, null, USE_ALL_BEANINFO)).getBeanInfo();
160 beanInfo = context.getBeanInfo(beanClass);
163 beanInfo = new Introspector(beanClass, null, USE_ALL_BEANINFO).getBeanInfo();
192 public static BeanInfo getBeanInfo(Class<?> beanClass, int flags) method in class:Introspector
194 return getBeanInfo(beanClass, null, flags);
212 public static BeanInfo getBeanInfo(Class<?> beanClass, Class<?> stopClass) method in class:Introspector
214 return getBeanInfo(beanClass, stopClass, USE_ALL_BEANINFO);
245 public static BeanInfo getBeanInfo(Clas method in class:Introspector
410 private BeanInfo getBeanInfo() throws IntrospectionException { method in class:Introspector
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStructureLoader.java269 public JaxBeanInfo getBeanInfo() { method in class:StructureLoader
H A DUnmarshallerImpl.java181 return (JAXBElement)unmarshal0(reader,source,getBeanInfo(expectedType));
288 return (JAXBElement)unmarshal0(node,getBeanInfo(expectedType));
334 return (JAXBElement)unmarshal0(reader,getBeanInfo(expectedType));
369 return (JAXBElement)unmarshal0(reader,getBeanInfo(expectedType));
532 public <T> JaxBeanInfo<T> getBeanInfo(Class<T> clazz) throws JAXBException { method in class:UnmarshallerImpl
533 return context.getBeanInfo(clazz,true);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DIntrospector.java532 Object bi = BeansHelper.getBeanInfo(clazz);
690 private static final Method getBeanInfo = field in class:Introspector.BeansHelper
691 getMethod(introspectorClass, "getBeanInfo", Class.class);
731 * Invokes java.beans.Introspector.getBeanInfo(Class)
733 static Object getBeanInfo(Class<?> clazz) throws Exception { method in class:Introspector.BeansHelper
735 return getBeanInfo.invoke(null, clazz);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DJAXBContextImpl.java387 bridge = new BridgeImpl(this, name,getBeanInfo(erasedType,true),tr);
544 public final JaxBeanInfo getBeanInfo(Object o) { method in class:JAXBContextImpl
567 public final JaxBeanInfo getBeanInfo(Object o,boolean fatal) throws JAXBException { method in class:JAXBContextImpl
568 JaxBeanInfo bi = getBeanInfo(o);
588 public final <T> JaxBeanInfo<T> getBeanInfo(Class<T> clazz) { method in class:JAXBContextImpl
600 public final <T> JaxBeanInfo<T> getBeanInfo(Class<T> clazz,boolean fatal) throws JAXBException { method in class:JAXBContextImpl
601 JaxBeanInfo<T> bi = getBeanInfo(clazz);
920 JaxBeanInfo bi = getBeanInfo(o,true);
927 JaxBeanInfo bi = getBeanInfo(o,true);
942 JaxBeanInfo bi = getBeanInfo(wrapperBea
[all...]

Completed in 56 milliseconds