Searched defs:beanInfo (Results 1 - 4 of 4) 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;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
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 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...]
/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...]

Completed in 51 milliseconds