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.
Modifier and Type | Method and Description |
---|---|
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 . |
void scan(XmlNode node) throws SAXException
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.)void setContentHandler(ContentHandler handler)
ContentHandler
.
This handler receives the SAX events.ContentHandler getContentHandler()
XmlNode getCurrentElement()
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.
LocatorEx getLocator()
Copyright © 2017 JBoss by Red Hat. All rights reserved.