com.sun.xml.bind.unmarshaller
public interface InfosetScanner<XmlNode>
This interface is not tied to any particular DOM API. Used by the Binder.
Since we are parsing a DOM-ish tree, I don't think this scanner itself will ever find an error, so this class doesn't have its own error reporting scheme.
This interface MAY NOT be implemented by the generated runtime nor the generated code. We may add new methods on this interface later. This is to be implemented by the static runtime only.
Since: 2.0
Method Summary | |
---|---|
ContentHandler | getContentHandler() |
XmlNode | getCurrentElement()
Gets the current element we are parsing.
|
LocatorEx | getLocator() |
void | scan(XmlNode node)
Parses the given DOM-ish element/document and generates
SAX events.
|
void | setContentHandler(ContentHandler handler)
Sets the ContentHandler.
|
This method could be called from the ContentHandler#startElement(String, String, String, Attributes) or ContentHandler#endElement(String, String, String).
Otherwise the behavior of this method is undefined.
Returns: never return null.
Throws: ClassCastException If the type of the node is not known to this implementation. SAXException If the ContentHandler throws a SAXException. Do not throw an exception just because the scanner failed (if that can happen we need to change the API.)