org.tmatesoft.svn.core.wc.xml
public class SVNXMLSerializer extends Object implements ContentHandler
Version: 1.1.1
| Constructor Summary | |
|---|---|
| SVNXMLSerializer(OutputStream os)
Creates a serializer to write XML contents to the specified
output stream.
| |
| SVNXMLSerializer(Writer writer)
Creates a serializer to write XML contents to the specified
writer.
| |
| Method Summary | |
|---|---|
| void | characters(char[] ch, int start, int length) |
| void | endDocument()
Writes a End Of Line marker to the output.
|
| void | endElement(String namespaceURI, String localName, String qName) |
| void | endPrefixMapping(String prefix)
Does nothing.
|
| void | flush()
Flushes written bytes.
|
| void | ignorableWhitespace(char[] ch, int start, int length)
Does nothing.
|
| void | processingInstruction(String target, String data)
Does nothing.
|
| void | setDocumentLocator(Locator locator)
Does nothing.
|
| void | skippedEntity(String name)
Does nothing.
|
| void | startDocument() |
| void | startElement(String namespaceURI, String localName, String qName, Attributes atts) |
| void | startPrefixMapping(String prefix, String uri)
Does nothing.
|
Parameters: os an output stream to write contents to
Parameters: writer a writer to write contents to
Throws: SAXException
Parameters: prefix
Throws: SAXException
Throws: IOException
Parameters: ch start length
Throws: SAXException
Parameters: target data
Throws: SAXException
Parameters: locator
Parameters: name
Throws: SAXException
Parameters: prefix uri
Throws: SAXException