| java.lang.Object org.xml.sax.helpers.DefaultHandler net.sf.statsvn.input.SvnXmlLogFileHandler
SvnXmlLogFileHandler | public class SvnXmlLogFileHandler extends DefaultHandler (Code) | | This is the SAX parser for the svn log in xml format. It feeds information to
the (@link net.sf.statsvn.input.SvnLogBuilder).
author: Jason Kealey author: Gunter Mussbacher version: $Id: SvnXmlLogFileHandler.java 300 2007-03-11 20:56:18Z jpdaigle $ |
Method Summary | |
public void | characters(char[] ch, int start, int length) Builds the string that was read; default implementation can invoke this
function multiple times while reading the data. | public void | endElement(String uri, String localName, String qName) Handles the end of an xml element and redirects to the appropriate end*
method. | public void | startElement(String uri, String localName, String qName, Attributes attributes) Handles the start of an xml element and redirects to the appropriate
start* method. |
SvnXmlLogFileHandler | public SvnXmlLogFileHandler(SvnLogBuilder builder, RepositoryFileManager repositoryFileManager)(Code) | | Default constructor.
Parameters: builder - where to send the information Parameters: repositoryFileManager - the repository file manager needed to obtain some information. |
characters | public void characters(char[] ch, int start, int length) throws SAXException(Code) | | Builds the string that was read; default implementation can invoke this
function multiple times while reading the data.
|
Methods inherited from org.xml.sax.helpers.DefaultHandler | public void characters(char ch, int start, int length) 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 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 void ignorableWhitespace(char ch, int start, int length) throws SAXException(Code)(Java Doc) public void notationDecl(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc) public void processingInstruction(String target, String data) throws SAXException(Code)(Java Doc) public InputSource resolveEntity(String publicId, String systemId) throws IOException, SAXException(Code)(Java Doc) public void setDocumentLocator(Locator locator)(Code)(Java Doc) public void skippedEntity(String name) 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 startPrefixMapping(String prefix, String uri) throws SAXException(Code)(Java Doc) public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName) throws SAXException(Code)(Java Doc) public void warning(SAXParseException e) throws SAXException(Code)(Java Doc)
|
|
|