Class W3CDomHandler
- java.lang.Object
-
- jakarta.xml.bind.annotation.W3CDomHandler
-
- All Implemented Interfaces:
DomHandler<org.w3c.dom.Element,javax.xml.transform.dom.DOMResult>
public class W3CDomHandler extends java.lang.Object implements DomHandler<org.w3c.dom.Element,javax.xml.transform.dom.DOMResult>
DomHandlerimplementation for W3C DOM (org.w3c.dompackage.)- Since:
- 1.6, JAXB 2.0
- Author:
- Kohsuke Kawaguchi
-
-
Constructor Summary
Constructors Constructor Description W3CDomHandler()Default constructor.W3CDomHandler(javax.xml.parsers.DocumentBuilder builder)Constructor that allows applications to specify which DOM implementation to be used.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.xml.transform.dom.DOMResultcreateUnmarshaller(ValidationEventHandler errorHandler)When a Jakarta XML Binding provider needs to unmarshal a part of a document into an infoset representation, it first calls this method to create aResultobject.javax.xml.parsers.DocumentBuildergetBuilder()org.w3c.dom.ElementgetElement(javax.xml.transform.dom.DOMResult r)Once the portion is sent to theResult.javax.xml.transform.Sourcemarshal(org.w3c.dom.Element element, ValidationEventHandler errorHandler)This method is called when a Jakarta XML Binding provider needs to marshal an element to XML.voidsetBuilder(javax.xml.parsers.DocumentBuilder builder)
-
-
-
Constructor Detail
-
W3CDomHandler
public W3CDomHandler()
Default constructor.It is up to a Jakarta XML Binding provider to decide which DOM implementation to use or how that is configured.
-
W3CDomHandler
public W3CDomHandler(javax.xml.parsers.DocumentBuilder builder)
Constructor that allows applications to specify which DOM implementation to be used.- Parameters:
builder- must not be null. Jakarta XML Binding uses thisDocumentBuilderto create a new element.
-
-
Method Detail
-
getBuilder
public javax.xml.parsers.DocumentBuilder getBuilder()
-
setBuilder
public void setBuilder(javax.xml.parsers.DocumentBuilder builder)
-
createUnmarshaller
public javax.xml.transform.dom.DOMResult createUnmarshaller(ValidationEventHandler errorHandler)
Description copied from interface:DomHandlerWhen a Jakarta XML Binding provider needs to unmarshal a part of a document into an infoset representation, it first calls this method to create aResultobject.A Jakarta XML Binding provider will then send a portion of the XML into the given result. Such a portion always form a subtree of the whole XML document rooted at an element.
- Specified by:
createUnmarshallerin interfaceDomHandler<org.w3c.dom.Element,javax.xml.transform.dom.DOMResult>- Parameters:
errorHandler- if any error happens between the invocation of this method and the invocation ofDomHandler.getElement(Result), they must be reported to this handler.The caller must provide a non-null error handler.
The
Resultobject created from this method may hold a reference to this error handler.- Returns:
- null if the operation fails. The error must have been reported to the error handler.
-
getElement
public org.w3c.dom.Element getElement(javax.xml.transform.dom.DOMResult r)
Description copied from interface:DomHandlerOnce the portion is sent to theResult. This method is called by a Jakarta XML Binding provider to obtain the unmarshalled element representation.Multiple invocations of this method may return different objects. This method can be invoked only when the whole subtree are fed to the
Resultobject.- Specified by:
getElementin interfaceDomHandler<org.w3c.dom.Element,javax.xml.transform.dom.DOMResult>- Parameters:
r- TheResultobject created byDomHandler.createUnmarshaller(ValidationEventHandler).- Returns:
- null if the operation fails. The error must have been reported to the error handler.
-
marshal
public javax.xml.transform.Source marshal(org.w3c.dom.Element element, ValidationEventHandler errorHandler)Description copied from interface:DomHandlerThis method is called when a Jakarta XML Binding provider needs to marshal an element to XML.If non-null, the returned
Sourcemust contain a whole document rooted at one element, which will then be woven into a bigger document that the Jakarta XML Binding provider is marshalling.- Specified by:
marshalin interfaceDomHandler<org.w3c.dom.Element,javax.xml.transform.dom.DOMResult>errorHandler- Receives any errors happened during the process of converting an element into aSource.The caller must provide a non-null error handler.
- Returns:
- null if there was an error. The error should have been reported to the handler.
-
-