Uses of Class
com.sun.xml.bind.api.BridgeContext

Packages that use BridgeContext
com.sun.xml.bind.api Runtime API for the JAX-WS RI 
com.sun.xml.bind.v2.runtime Code that implements JAXBContext, Unmarshaller, and Marshaller. 
 

Uses of BridgeContext in com.sun.xml.bind.api
 

Methods in com.sun.xml.bind.api that return BridgeContext
abstract  BridgeContext JAXBRIContext.createBridgeContext()
          Creates a new BridgeContext instance.
 

Methods in com.sun.xml.bind.api with parameters of type BridgeContext
abstract  void Bridge.marshal(BridgeContext context, T object, org.w3c.dom.Node output)
           
abstract  void Bridge.marshal(BridgeContext context, T object, java.io.OutputStream output, javax.xml.namespace.NamespaceContext nsContext)
          Marshals the specified type object with the implicit element name associated with this instance of Bridge.
abstract  void Bridge.marshal(BridgeContext context, T object, javax.xml.stream.XMLStreamWriter output)
           
abstract  T Bridge.unmarshal(BridgeContext context, java.io.InputStream in)
          Unmarshals the specified type object.
abstract  T Bridge.unmarshal(BridgeContext context, javax.xml.transform.Source in)
          Unmarshals the specified type object.
abstract  T Bridge.unmarshal(BridgeContext context, javax.xml.stream.XMLStreamReader in)
          Unmarshals the specified type object.
 

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

Subclasses of BridgeContext in com.sun.xml.bind.v2.runtime
(package private)  class BridgeContextImpl
          BridgeContext implementation.
 

Methods in com.sun.xml.bind.v2.runtime that return BridgeContext
 BridgeContext JAXBContextImpl.createBridgeContext()
           
 

Methods in com.sun.xml.bind.v2.runtime with parameters of type BridgeContext
 void BridgeAdapter.marshal(BridgeContext context, InMemory inMemory, org.w3c.dom.Node output)
           
 void BridgeAdapter.marshal(BridgeContext context, InMemory inMemory, java.io.OutputStream output, javax.xml.namespace.NamespaceContext nsc)
           
 void BridgeAdapter.marshal(BridgeContext context, InMemory inMemory, javax.xml.stream.XMLStreamWriter output)
           
 void BridgeImpl.marshal(BridgeContext context, T t, org.w3c.dom.Node output)
           
 void BridgeImpl.marshal(BridgeContext context, T t, java.io.OutputStream output, javax.xml.namespace.NamespaceContext nsContext)
           
 void BridgeImpl.marshal(BridgeContext context, T t, javax.xml.stream.XMLStreamWriter output)
           
 InMemory BridgeAdapter.unmarshal(BridgeContext context, java.io.InputStream in)
           
 T BridgeImpl.unmarshal(BridgeContext context, java.io.InputStream in)
           
 InMemory BridgeAdapter.unmarshal(BridgeContext context, javax.xml.transform.Source in)
           
 T BridgeImpl.unmarshal(BridgeContext context, javax.xml.transform.Source in)
           
 InMemory BridgeAdapter.unmarshal(BridgeContext context, javax.xml.stream.XMLStreamReader in)
           
 T BridgeImpl.unmarshal(BridgeContext context, javax.xml.stream.XMLStreamReader in)