| java.lang.Object com.caucho.xml.DOMBuilder
All known Subclasses: com.caucho.xsl.TemplatesHandlerImpl, com.caucho.xsl.TransformerHandlerImpl,
Method Summary | |
public void | attribute(String uri, String localName, String qName, String value) | public void | cdata(String text) | public void | cdata(char[] buffer, int offset, int length) | public void | characters(char[] buffer, int offset, int length) Adds text characters to the current document. | public void | comment(char[] buf, int offset, int length) Handles the callback for a comment. | public void | comment(String data) Handles the callback for a comment. | public SAXException | createError(Exception e) Throws an appropriate error. | public void | dtd(QDocumentType dtd) | public void | endDocument() | public void | endElement(String uri, String localName, String qName) | public void | endPrefixMapping(String prefix) | public void | entityReference(String name) | public void | error(SAXParseException e) | XmlParseException | error(String text) Returns a new parse exception with filename and line if available. | public void | fatalError(SAXParseException e) | public boolean | getEscapeText() | public Node | getNode() | public String | getSystemId() | public void | ignorableWhitespace(char[] buffer, int offset, int length) Handles the callback for ignorable whitespace. | public void | init(Node top) | public void | processingInstruction(String name, String data) | public void | setCoalescing(boolean isCoalescing) Set true if text and cdata nodes should be combined. | public void | setDocumentLocator(Locator loc) | public void | setEscapeText(boolean isEscaped) | public void | setFilename(String filename) | public void | setLocation(String filename, int line, int column) | public void | setSkipWhitespace(boolean skipWhitespace) Set true if ignorable whitespace should be skipped. | public void | setStrictXML(boolean isStrictXml) Set true if we're only handling strict xml. | public void | setSystemId(String systemId) | public void | skippedEntity(String s) | public void | startDocument() | public void | startElement(String uri, String localName, String qName) | public void | startElement(QName name, QAttributes attributes) | public void | startElement(String uri, String localName, String qName, Attributes attributes) | public void | startPrefixMapping(String prefix, String url) | public void | text(String text) | public void | text(char[] buffer, int offset, int length) | public void | warning(SAXParseException e) |
DOMBuilder | public DOMBuilder()(Code) | | |
cdata | public void cdata(char[] buffer, int offset, int length) throws IOException(Code) | | |
characters | public void characters(char[] buffer, int offset, int length) throws SAXException(Code) | | Adds text characters to the current document.
|
comment | public void comment(char[] buf, int offset, int length) throws SAXException(Code) | | Handles the callback for a comment.
Parameters: data - the content of the comment. |
comment | public void comment(String data) throws IOException(Code) | | Handles the callback for a comment.
Parameters: data - the content of the comment. |
endPrefixMapping | public void endPrefixMapping(String prefix)(Code) | | |
entityReference | public void entityReference(String name)(Code) | | |
getEscapeText | public boolean getEscapeText()(Code) | | |
ignorableWhitespace | public void ignorableWhitespace(char[] buffer, int offset, int length) throws SAXException(Code) | | Handles the callback for ignorable whitespace.
Parameters: buffer - the character buffer containing the whitespace. Parameters: offset - starting offset into the character buffer. Parameters: length - number of characters in the buffer. |
setCoalescing | public void setCoalescing(boolean isCoalescing)(Code) | | Set true if text and cdata nodes should be combined.
|
setDocumentLocator | public void setDocumentLocator(Locator loc)(Code) | | |
setEscapeText | public void setEscapeText(boolean isEscaped)(Code) | | |
setLocation | public void setLocation(String filename, int line, int column)(Code) | | |
setSkipWhitespace | public void setSkipWhitespace(boolean skipWhitespace)(Code) | | Set true if ignorable whitespace should be skipped.
|
setStrictXML | public void setStrictXML(boolean isStrictXml)(Code) | | Set true if we're only handling strict xml.
|
startDocument | public void startDocument()(Code) | | |
|
|