Methods Summary |
---|
public org.xml.sax.ContentHandler | getHandler()Get the {@link org.xml.sax.ContentHandler} that is the Result.
return handler;
|
public org.xml.sax.ext.LexicalHandler | getLexicalHandler()Get a SAX2 {@link org.xml.sax.ext.LexicalHandler} for the output.
return lexhandler;
|
public java.lang.String | getSystemId()Get the system identifier that was set with setSystemId.
return systemId;
|
public void | setHandler(org.xml.sax.ContentHandler handler)Set the target to be a SAX2 {@link org.xml.sax.ContentHandler}.
this.handler = handler;
|
public void | setLexicalHandler(org.xml.sax.ext.LexicalHandler handler)Set the SAX2 {@link org.xml.sax.ext.LexicalHandler} for the output.
This is needed to handle XML comments and the like. If the
lexical handler is not set, an attempt should be made by the
transformer to cast the {@link org.xml.sax.ContentHandler} to a
LexicalHandler .
this.lexhandler = handler;
|
public void | setSystemId(java.lang.String systemId)Method setSystemId Set the systemID that may be used in association
with the {@link org.xml.sax.ContentHandler}.
this.systemId = systemId;
|