org.apache.ws.jaxme
Interface JMUnmarshallerHandler

All Superinterfaces:
org.xml.sax.ContentHandler, UnmarshallerHandler
All Known Implementing Classes:
JMUnmarshallerHandlerImpl

public interface JMUnmarshallerHandler
extends UnmarshallerHandler

JaxMe's private extension of UnmarshallerHandler.


Method Summary
 DatatypeConverterInterface getDatatypeConverter()
          Returns an instance of DatatypeConverterInterface.
 org.xml.sax.Locator getDocumentLocator()
          Returns an instance of Locator, if it has been set, or null.
 JMUnmarshaller getJMUnmarshaller()
          Returns the JMUnmarshaller, which created this handler.
 int getLevel()
          Returns the current level of nested elements.
 NamespaceSupport getNamespaceSupport()
          Returns an instance of NamespaceSupport.
 Observer getObserver()
          Returns the observer, which will be notified, when the element has been parsed.
 void setObserver(Observer pObserver)
          Sets an observer, which will be notified, when the element has been parsed.
 
Methods inherited from interface javax.xml.bind.UnmarshallerHandler
getResult
 
Methods inherited from interface org.xml.sax.ContentHandler
characters, endDocument, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping
 

Method Detail

getJMUnmarshaller

JMUnmarshaller getJMUnmarshaller()
Returns the JMUnmarshaller, which created this handler.


setObserver

void setObserver(Observer pObserver)
Sets an observer, which will be notified, when the element has been parsed.


getObserver

Observer getObserver()
Returns the observer, which will be notified, when the element has been parsed.


getNamespaceSupport

NamespaceSupport getNamespaceSupport()
Returns an instance of NamespaceSupport.


getDocumentLocator

org.xml.sax.Locator getDocumentLocator()
Returns an instance of Locator, if it has been set, or null.

See Also:
ContentHandler.setDocumentLocator(org.xml.sax.Locator)

getDatatypeConverter

DatatypeConverterInterface getDatatypeConverter()
Returns an instance of DatatypeConverterInterface.


getLevel

int getLevel()
Returns the current level of nested elements.