Uses of Class
com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallingContext

Packages that use UnmarshallingContext
com.sun.xml.bind.v2.runtime Code that implements JAXBContext, Unmarshaller, and Marshaller. 
com.sun.xml.bind.v2.runtime.unmarshaller   
 

Uses of UnmarshallingContext in com.sun.xml.bind.v2.runtime
 

Methods in com.sun.xml.bind.v2.runtime with parameters of type UnmarshallingContext
abstract  BeanT JaxBeanInfo.createInstance(UnmarshallingContext context)
          Creates a new instance of the bean.
 BeanT ClassBeanInfoImpl.createInstance(UnmarshallingContext context)
           
 Object AnyTypeBeanInfo.createInstance(UnmarshallingContext context)
           
 Object ArrayBeanInfoImpl.createInstance(UnmarshallingContext context)
           
 CompositeStructure CompositeStructureBeanInfo.createInstance(UnmarshallingContext context)
           
 BeanT LeafBeanInfoImpl.createInstance(UnmarshallingContext context)
           
 Object ValueListBeanInfoImpl.createInstance(UnmarshallingContext context)
           
 JAXBElement ElementBeanInfoImpl.createInstance(UnmarshallingContext context)
           
abstract  boolean JaxBeanInfo.reset(BeanT o, UnmarshallingContext context)
          Resets the object to the initial state, as if the object is created fresh.
 boolean ClassBeanInfoImpl.reset(BeanT bean, UnmarshallingContext context)
           
 boolean LeafBeanInfoImpl.reset(BeanT bean, UnmarshallingContext context)
           
 boolean CompositeStructureBeanInfo.reset(CompositeStructure o, UnmarshallingContext context)
           
 boolean ElementBeanInfoImpl.reset(JAXBElement e, UnmarshallingContext context)
           
 boolean AnyTypeBeanInfo.reset(Object element, UnmarshallingContext context)
           
 boolean ArrayBeanInfoImpl.reset(Object array, UnmarshallingContext context)
           
 boolean ValueListBeanInfoImpl.reset(Object array, UnmarshallingContext context)
           
 

Uses of UnmarshallingContext in com.sun.xml.bind.v2.runtime.unmarshaller
 

Fields in com.sun.xml.bind.v2.runtime.unmarshaller declared as UnmarshallingContext
 UnmarshallingContext Scope.context
           
protected  UnmarshallingContext StAXConnector.context
           
 UnmarshallingContext UnmarshallerImpl.coordinator
           
 

Methods in com.sun.xml.bind.v2.runtime.unmarshaller that return UnmarshallingContext
 UnmarshallingContext XmlVisitor.getContext()
          Returns the UnmarshallingContext at the end of the chain.
 UnmarshallingContext SAXConnector.getContext()
           
 UnmarshallingContext InterningXmlVisitor.getContext()
           
 UnmarshallingContext MTOMDecorator.getContext()
           
 UnmarshallingContext ValidatingUnmarshaller.getContext()
           
 UnmarshallingContext UnmarshallingContext.getContext()
           
 UnmarshallingContext UnmarshallingContext.State.getContext()
          Gets the context.
static UnmarshallingContext UnmarshallingContext.getInstance()
          When called from within the realm of the unmarshaller, this method returns the current UnmarshallingContext in charge.
 

Constructors in com.sun.xml.bind.v2.runtime.unmarshaller with parameters of type UnmarshallingContext
Scope(UnmarshallingContext context)