| java.lang.Object net.sourceforge.chaperon.common.LogContentHandler
LogContentHandler | public class LogContentHandler implements ContentHandler(Code) | | author: Stephan Michels version: CVS $Id: LogContentHandler.java,v 1.2 2004/01/08 11:30:52 benedikta Exp $ |
Method Summary | |
public void | characters(char[] c, int start, int len) Receive notification of character data. | public void | endDocument() Receive notification of the end of a document. | public void | endElement(String namespaceURI, String localName, String raw) Receive notification of the end of an element. | public void | endPrefixMapping(String prefix) End the scope of a prefix-URI mapping. | public void | ignorableWhitespace(char[] c, int start, int len) Receive notification of ignorable whitespace in element content. | public void | processingInstruction(String target, String data) Receive notification of a processing instruction. | public void | setDocumentLocator(Locator locator) Receive an object for locating the origin of SAX document events. | public void | setLog(Log log) | public void | skippedEntity(String name) | public void | startDocument() Receive notification of the beginning of a document. | public void | startElement(String namespaceURI, String localName, String qName, Attributes atts) Receive notification of the beginning of an element. | public void | startPrefixMapping(String prefix, String uri) Begin the scope of a prefix-URI Namespace mapping. |
characters | public void characters(char[] c, int start, int len) throws SAXException(Code) | | Receive notification of character data.
|
endDocument | public void endDocument() throws SAXException(Code) | | Receive notification of the end of a document.
|
endPrefixMapping | public void endPrefixMapping(String prefix) throws SAXException(Code) | | End the scope of a prefix-URI mapping.
|
ignorableWhitespace | public void ignorableWhitespace(char[] c, int start, int len) throws SAXException(Code) | | Receive notification of ignorable whitespace in element content.
|
processingInstruction | public void processingInstruction(String target, String data) throws SAXException(Code) | | Receive notification of a processing instruction.
|
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | Receive an object for locating the origin of SAX document events.
|
setLog | public void setLog(Log log)(Code) | | |
startDocument | public void startDocument() throws SAXException(Code) | | Receive notification of the beginning of a document.
|
startPrefixMapping | public void startPrefixMapping(String prefix, String uri) throws SAXException(Code) | | Begin the scope of a prefix-URI Namespace mapping.
|
|
|