Searched refs:beanInfo (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DTagAndType.java40 final JaxBeanInfo beanInfo; field in class:TagAndType
41 TagAndType(Name tagName, JaxBeanInfo beanInfo) { argument
43 this.beanInfo = beanInfo;
H A DSingleElementNodeProperty.java90 JaxBeanInfo beanInfo = context.getOrCreate(e.getTarget());
92 typeNames.put( beanInfo.jaxbType, new TagAndType(
93 context.nameBuilder.createElementName(e.getTagName()),beanInfo) );
143 w.childAsXsiType(v,fieldName,tt.beanInfo, addNilDecl && nillable);
H A DArrayElementProperty.java97 JaxBeanInfo beanInfo = grammar.getOrCreate(typeRef.getTarget());
100 beanInfo);
102 refs.put(typeRef,beanInfo);
157 serializeItem(tt.beanInfo,item,w);
H A DArrayReferenceNodeProperty.java119 final JaxBeanInfo beanInfo = n.getValue();
120 loaders.put(n.nsUri,n.localName,new ChildLoader(beanInfo.getLoader(chain.context,true),recv));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DXsiTypeLoader.java59 JaxBeanInfo beanInfo = parseXsiType(state,ea,defaultBeanInfo);
60 if(beanInfo==null)
61 beanInfo = defaultBeanInfo;
63 Loader loader = beanInfo.getLoader(null,false);
70 JaxBeanInfo beanInfo = null;
94 beanInfo = context.getJAXBContext().getGlobalType(type);
95 if(beanInfo==null) {
112 return beanInfo;
H A DStructureLoader.java91 private final JaxBeanInfo beanInfo; field in class:StructureLoader
101 public StructureLoader(ClassBeanInfoImpl beanInfo) { argument
103 this.beanInfo = beanInfo;
113 public void init( JAXBContextImpl context, ClassBeanInfoImpl beanInfo, Accessor<?,Map<QName,String>> attWildcard) { argument
115 for (ClassBeanInfoImpl bi = beanInfo; bi != null; bi = bi.superClazz) {
158 assert !beanInfo.isImmutable();
163 if(child != null && beanInfo.jaxbType!=child.getClass())
167 beanInfo.reset(child,context);
170 child = context.createInstance(beanInfo);
[all...]
H A DLoader.java189 protected final void fireBeforeUnmarshal(JaxBeanInfo beanInfo, Object child, UnmarshallingContext.State state) throws SAXException { argument
190 if(beanInfo.lookForLifecycleMethods()) {
193 if(beanInfo.hasBeforeUnmarshalMethod()) {
194 beanInfo.invokeBeforeUnmarshalMethod(context.parent, child, state.prev.target);
208 protected final void fireAfterUnmarshal(JaxBeanInfo beanInfo, Object child, UnmarshallingContext.State state) throws SAXException { argument
210 if(beanInfo.lookForLifecycleMethods()) {
213 if(beanInfo.hasAfterUnmarshalMethod()) {
214 beanInfo.invokeAfterUnmarshalMethod(context.parent, child, state.target);
H A DLeafPropertyXsiLoader.java66 JaxBeanInfo beanInfo = null;
80 beanInfo = context.getJAXBContext().getGlobalType(type);
81 if (beanInfo == null)
85 cbii = (ClassBeanInfoImpl) beanInfo;
H A DUnmarshallingContext.java601 public Object createInstance( JaxBeanInfo beanInfo ) throws SAXException {
603 Factory factory = factories.get(beanInfo.jaxbType);
608 return beanInfo.createInstance(this);
610 Loader.reportError("Unable to create an instance of "+beanInfo.jaxbType.getName(),e,false);
612 Loader.reportError("Unable to create an instance of "+beanInfo.jaxbType.getName(),e,false);
614 Loader.reportError("Unable to create an instance of "+beanInfo.jaxbType.getName(),e,false);
1045 JaxBeanInfo beanInfo = XsiTypeLoader.parseXsiType(state, ea, null);
1046 if(beanInfo==null) {
1052 state.loader = beanInfo.getLoader(null,false);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DXMLSerializer.java471 final JaxBeanInfo beanInfo = grammar.getBeanInfo(obj, true);
478 final boolean lookForLifecycleMethods = beanInfo.lookForLifecycleMethods();
480 fireBeforeMarshalEvents(beanInfo, obj);
483 beanInfo.serializeRoot(obj,this);
486 fireAfterMarshalEvents(beanInfo, obj);
561 JaxBeanInfo beanInfo;
563 beanInfo = grammar.getBeanInfo(child,true);
573 final boolean lookForLifecycleMethods = beanInfo.lookForLifecycleMethods();
575 fireBeforeMarshalEvents(beanInfo, child);
578 beanInfo
704 fireAfterMarshalEvents(final JaxBeanInfo beanInfo, Object currentTarget) argument
728 fireBeforeMarshalEvents(final JaxBeanInfo beanInfo, Object currentTarget) argument
[all...]
H A DJAXBContextImpl.java545 // don't allow xs:anyType beanInfo to handle all the unbound objects
616 JaxBeanInfo beanInfo = rootMap.get(tag.uri,tag.local);
617 if(beanInfo==null)
620 return beanInfo.getLoader(this,true);
/openjdk7/jdk/make/tools/swing-beans/
H A DGenSwingBeanInfo.java382 BeanInfo beanInfo = null;
388 beanInfo = Introspector.getBeanInfo(cls);
390 beanInfo = Introspector.getBeanInfo(cls, cls.getSuperclass());
392 beanDescriptor = beanInfo.getBeanDescriptor();
419 beanPropertyDescriptors = genPropertyDescriptors(beanInfo,dochash);
/openjdk7/jdk/src/share/classes/java/beans/
H A DIntrospector.java158 BeanInfo beanInfo;
160 beanInfo = context.getBeanInfo(beanClass);
162 if (beanInfo == null) {
163 beanInfo = new Introspector(beanClass, null, USE_ALL_BEANINFO).getBeanInfo();
165 context.putBeanInfo(beanClass, beanInfo);
168 return beanInfo;

Completed in 84 milliseconds