Interface DomHandler<ElementT,ResultT extends Result> 
- All Known Implementing Classes:
- W3CDomHandler
 Implementations of this interface will be used in conjunction with
 XmlAnyElement annotation to map an element of XML into a representation
 of infoset such as W3C DOM.
 
Implementations hide how a portion of XML is converted into/from such DOM-like representation, allowing Jakarta XML Binding providers to work with arbitrary such library.
This interface is intended to be implemented by library writers and consumed by Jakarta XML Binding providers. None of those methods are intended to be called from applications.
- Author:
- Kohsuke Kawaguchi
- 
Method SummaryModifier and TypeMethodDescriptioncreateUnmarshaller(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.getElement(ResultT rt) Once the portion is sent to theResult.marshal(ElementT n, ValidationEventHandler errorHandler) This method is called when a Jakarta XML Binding provider needs to marshal an element to XML.
- 
Method Details- 
createUnmarshallerWhen 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. - Parameters:
- errorHandler- if any error happens between the invocation of this method and the invocation of- 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.
 
- 
getElementOnce 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.- Parameters:
- rt- The- Resultobject created by- createUnmarshaller(ValidationEventHandler).
- Returns:
- null if the operation fails. The error must have been reported to the error handler.
 
- 
marshalThis 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.- Parameters:
- errorHandler- Receives any errors happened during the process of converting an element into a- Source.- 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.
 
 
-