| java.lang.Object org.apache.cocoon.components.profiler.ProfilingXMLPipe
ProfilingXMLPipe | public class ProfilingXMLPipe implements XMLPipe(Code) | | This SAX connector measures time taken by each Sitemap component. This
class use the XMLSerializer/Interpreter to buffer the output, and to
seperate the measurement of the time. The SAX fragments were also stored
into the ProfilerData.
author: Stephan Michels author: Bruno Dumon version: CVS $Id: ProfilingXMLPipe.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
public void | characters(char c, int start, int len) | public void | comment(char ch, int start, int len) | public void | endCDATA() | public void | endDTD() | public void | endDocument() | public void | endElement(String uri, String loc, String raw) | public void | endEntity(String name) | public void | endPrefixMapping(String prefix) | public void | ignorableWhitespace(char c, int start, int len) | public void | processingInstruction(String target, String data) | public void | setConsumer(XMLConsumer consumer) Set the XMLConsumer that will receive XML data. | public void | setDocumentLocator(Locator locator) | public void | setup(int index, ProfilerData data) Setup this XMLPipe. | public void | skippedEntity(String name) | public void | startCDATA() | public void | startDTD(String name, String publicId, String systemId) | public void | startDocument() | public void | startElement(String uri, String loc, String raw, Attributes a) | public void | startEntity(String name) | public void | startPrefixMapping(String prefix, String uri) |
ignorableWhitespace | public void ignorableWhitespace(char c, int start, int len) throws SAXException(Code) | | |
setConsumer | public void setConsumer(XMLConsumer consumer)(Code) | | Set the XMLConsumer that will receive XML data.
|
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | |
setup | public void setup(int index, ProfilerData data)(Code) | | Setup this XMLPipe.
Parameters: index - Index of the component. Parameters: data - Data of the profile. |
|
|