| javanet.staxutils.StAXContentHandler javanet.staxutils.StAXStreamContentHandler
StAXStreamContentHandler | public class StAXStreamContentHandler extends StAXContentHandler (Code) | | SAX ContentHandler that writes events to a StAX
XMLStreamWriter .
author: Christian Niles version: $Revision: 1.5 $ |
Method Summary | |
public void | characters(char[] ch, int start, int length) | public void | comment(char[] ch, int start, int length) | public void | endCDATA() | public void | endDocument() | public void | endElement(String uri, String localName, String qName) | public XMLStreamWriter | getStreamWriter() Returns a reference to the
XMLStreamWriter to which SAX events
are written. | public void | ignorableWhitespace(char[] ch, int start, int length) | public void | processingInstruction(String target, String data) | public void | setStreamWriter(XMLStreamWriter writer) Sets the
XMLStreamWriter to which SAX events will be written. | public void | startDocument() | public void | startElement(String uri, String localName, String qName, Attributes attributes) |
StAXStreamContentHandler | public StAXStreamContentHandler()(Code) | | |
StAXStreamContentHandler | public StAXStreamContentHandler(XMLStreamWriter writer)(Code) | | Constructs an instance that writes SAX events to the specified StAX
stream.
Parameters: writer - The StAX stream to which events will be written. |
characters | public void characters(char[] ch, int start, int length) throws SAXException(Code) | | |
ignorableWhitespace | public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException(Code) | | |
Methods inherited from javanet.staxutils.StAXContentHandler | public void characters(char[] ch, int start, int length) throws SAXException(Code)(Java Doc) public void comment(char[] ch, int start, int length) throws SAXException(Code)(Java Doc) public void endCDATA() throws SAXException(Code)(Java Doc) public void endDTD() throws SAXException(Code)(Java Doc) public void endDocument() throws SAXException(Code)(Java Doc) public void endElement(String uri, String localName, String qName) throws SAXException(Code)(Java Doc) public void endEntity(String name) throws SAXException(Code)(Java Doc) public void endPrefixMapping(String prefix) throws SAXException(Code)(Java Doc) public void error(SAXParseException e) throws SAXException(Code)(Java Doc) public void fatalError(SAXParseException e) throws SAXException(Code)(Java Doc) public Location getCurrentLocation()(Code)(Java Doc) final public static void parseQName(String qName, String[] results)(Code)(Java Doc) protected void reportException(String type, SAXException e) throws SAXException(Code)(Java Doc) public void setDocumentLocator(Locator locator)(Code)(Java Doc) public void setXMLReporter(XMLReporter reporter)(Code)(Java Doc) public void startCDATA() throws SAXException(Code)(Java Doc) public void startDTD(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc) public void startDocument() throws SAXException(Code)(Java Doc) public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException(Code)(Java Doc) public void startEntity(String name) throws SAXException(Code)(Java Doc) public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)(Java Doc) public void warning(SAXParseException e) throws SAXException(Code)(Java Doc)
|
|
|