Modifier and Type | Field and Description |
---|---|
private Node | |
private LexicalHandler | |
private Map | |
private ContentHandler | |
private SAXImpl | |
private static final String | |
private static final String |
Modifier and Type | Method and Description |
---|---|
private void | |
public int | getColumnNumber()
Implements org. This class is only used internally so this method should never be called. |
public ContentHandler | getContentHandler()
Implements org. Return the current content handler. |
public DTDHandler | getDTDHandler()
Implements org. This class is only used internally so this method should never be called. |
public EntityResolver | getEntityResolver()
Implements org. This class is only used internally so this method should never be called. |
public ErrorHandler | getErrorHandler()
Implements org. This class is only used internally so this method should never be called. |
public boolean | getFeature(String
The feature name, which is a fully-qualified URI. name)Implements org. This class is only used internally so this method should never be called. |
public int | getLineNumber()
Implements org. This class is only used internally so this method should never be called. |
public Object | getProperty(String
The property name, which is a fully-qualified URI. name)Implements org. This class is only used internally so this method should never be called. |
public String | getPublicId()
Implements org. This class is only used internally so this method should never be called. |
public String | getSystemId()
Implements org. This class is only used internally so this method should never be called. |
public void | parse(InputSource
The input source for the top-level of the
XML document. unused)Implements org. Parse an XML document. |
public void | |
private void | |
public void | parse(String
The system identifier (URI). sysId)Implements org. This class is only used internally so this method should never be called. |
public void | setContentHandler(ContentHandler
The content handler. handler)Implements org. Allow an application to register a content event handler. |
public void | setDTDHandler(DTDHandler
The DTD handler. handler)Implements org. This class is only used internally so this method should never be called. |
public void | setEntityResolver(EntityResolver
The entity resolver. resolver)Implements org. This class is only used internally so this method should never be called. |
public void | setErrorHandler(ErrorHandler
The error handler. handler)Implements org. This class is only used internally so this method should never be called. |
public void | setFeature(String
The feature name, which is a fully-qualified URI. name, boolean The requested value of the feature (true or false). value)Implements org. This class is only used internally so this method should never be called. |
public void | setProperty(String
The property name, which is a fully-qualified URI. name, Object The requested value for the property. value)Implements org. This class is only used internally so this method should never be called. |
private boolean |
_dom | back to summary |
---|---|
private Node _dom |
_lex | back to summary |
---|---|
private LexicalHandler _lex |
_nsPrefixes | back to summary |
---|---|
private Map<String, Stack<String>> _nsPrefixes |
_sax | back to summary |
---|---|
private ContentHandler _sax |
_saxImpl | back to summary |
---|---|
private SAXImpl _saxImpl |
EMPTYSTRING | back to summary |
---|---|
private static final String EMPTYSTRING |
XMLNS_PREFIX | back to summary |
---|---|
private static final String XMLNS_PREFIX |
DOM2SAX | back to summary |
---|---|
public DOM2SAX(Node root) |
endPrefixMapping | back to summary |
---|---|
private void endPrefixMapping(String prefix) throws SAXException |
getColumnNumber | back to summary |
---|---|
public int getColumnNumber() Implements org. This class is only used internally so this method should never be called.
|
getContentHandler | back to summary |
---|---|
public ContentHandler getContentHandler() Implements org. Doc from org. Return the current content handler.
|
getDTDHandler | back to summary |
---|---|
public DTDHandler getDTDHandler() Implements org. This class is only used internally so this method should never be called.
|
getEntityResolver | back to summary |
---|---|
public EntityResolver getEntityResolver() Implements org. This class is only used internally so this method should never be called.
|
getErrorHandler | back to summary |
---|---|
public ErrorHandler getErrorHandler() Implements org. This class is only used internally so this method should never be called.
|
getFeature | back to summary |
---|---|
public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException Implements org. This class is only used internally so this method should never be called.
|
getLineNumber | back to summary |
---|---|
public int getLineNumber() Implements org. This class is only used internally so this method should never be called.
|
getProperty | back to summary |
---|---|
public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException Implements org. This class is only used internally so this method should never be called.
|
getPublicId | back to summary |
---|---|
public String getPublicId() Implements org. This class is only used internally so this method should never be called.
|
getSystemId | back to summary |
---|---|
public String getSystemId() Implements org. This class is only used internally so this method should never be called.
|
parse | back to summary |
---|---|
public void parse(InputSource unused) throws IOException, SAXException Implements org. Doc from org. Parse an XML document. The application can use this method to instruct the XML reader to begin parsing an XML document from any valid input source (a character stream, a byte stream, or a URI). Applications may not invoke this method while a parse is in progress (they should create a new XMLReader instead for each nested XML document). Once a parse is complete, an application may reuse the same XMLReader object, possibly with a different input source. Configuration of the XMLReader object (such as handler bindings and values established for feature flags and properties) is unchanged by completion of a parse, unless the definition of that aspect of the configuration explicitly specifies other behavior. (For example, feature flags or properties exposing characteristics of the document being parsed.) During the parse, the XMLReader will provide information about the XML document through the registered event handlers. This method is synchronous: it will not return until parsing has ended. If a client application wants to terminate parsing early, it should throw an exception.
|
parse | back to summary |
---|---|
public void parse() throws IOException, SAXException |
parse | back to summary |
---|---|
private void parse(Node node) throws IOException, SAXException Traverse the DOM and generate SAX events for a handler. A startElement() event passes all attributes, including namespace declarations. |
parse | back to summary |
---|---|
public void parse(String sysId) throws IOException, SAXException Implements org. This class is only used internally so this method should never be called.
|
setContentHandler | back to summary |
---|---|
public void setContentHandler(ContentHandler handler) throws NullPointerException Implements org. Doc from org. Allow an application to register a content event handler. If the application does not register a content handler, all content events reported by the SAX parser will be silently ignored. Applications may register a new or different handler in the middle of a parse, and the SAX parser must begin using the new handler immediately.
|
setDTDHandler | back to summary |
---|---|
public void setDTDHandler(DTDHandler handler) throws NullPointerException Implements org. This class is only used internally so this method should never be called.
|
setEntityResolver | back to summary |
---|---|
public void setEntityResolver(EntityResolver resolver) throws NullPointerException Implements org. This class is only used internally so this method should never be called.
|
setErrorHandler | back to summary |
---|---|
public void setErrorHandler(ErrorHandler handler) throws NullPointerException Implements org. This class is only used internally so this method should never be called.
|
setFeature | back to summary |
---|---|
public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException Implements org. This class is only used internally so this method should never be called.
|
setProperty | back to summary |
---|---|
public void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException Implements org. This class is only used internally so this method should never be called.
|
startPrefixMapping | back to summary |
---|---|
private boolean startPrefixMapping(String prefix, String uri) throws SAXException Begin the scope of namespace prefix. Forward the event to the SAX handler only if the prefix is unknown or it is mapped to a different URI. |