|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.apache.avalon.framework.logger.AbstractLogEnabled
org.apache.cocoon.xml.AbstractXMLProducer
org.apache.cocoon.xml.AbstractXMLPipe
org.apache.cocoon.transformation.AbstractTransformer
org.apache.cocoon.transformation.AbstractSAXTransformer
org.apache.cocoon.transformation.TeeTransformer
ModifiableSource
specified by its src parameter.
It does not in any way change the events.
This transformer works just like the unix "tee" command and is useful for debugging
received XML streams.
Usage:<map:transform type="tee" src="url"/>
| Field Summary |
| Fields inherited from class org.apache.cocoon.transformation.AbstractSAXTransformer |
context, defaultNamespaceURI, EMPTY_ATTRIBUTES, emptyAttributes, ignoreEmptyCharacters, ignoreEventsCount, ignoreHooksCount, ignoreWhitespaces, manager, namespaceURI, objectModel, parameters, recorderStack, request, response, source, stack |
| Fields inherited from class org.apache.cocoon.xml.AbstractXMLProducer |
contentHandler, EMPTY_CONTENT_HANDLER, lexicalHandler, xmlConsumer |
| Fields inherited from interface org.apache.cocoon.transformation.Transformer |
ROLE |
| Constructor Summary | |
TeeTransformer()
|
|
| Method Summary | |
void |
characters(char[] ch,
int start,
int len)
Receive notification of character data. |
void |
comment(char[] ch,
int start,
int len)
Report an XML comment anywhere in the document. |
void |
configure(Configuration configuration)
|
void |
endCDATA()
Report the end of a CDATA section. |
void |
endDocument()
Receive notification of the end of a document. |
void |
endDTD()
Report the end of DTD declarations. |
void |
endElement(String uri,
String loc,
String raw)
Receive notification of the end of an element. |
void |
endEntity(String name)
Report the end of an entity. |
void |
endPrefixMapping(String prefix)
End the scope of a prefix-URI mapping. |
void |
ignorableWhitespace(char[] ch,
int start,
int len)
Receive notification of ignorable whitespace in element content. |
void |
processingInstruction(String target,
String data)
Receive notification of a processing instruction. |
void |
recycle()
Recycle the producer by removing references, and resetting handlers to null (empty) implementations. |
void |
setDocumentLocator(Locator locator)
Receive an object for locating the origin of SAX document events. |
void |
setup(SourceResolver resolver,
Map objectModel,
String src,
Parameters parameters)
Set the SourceResolver, objectModel Map,
the source and sitemap Parameters used to process the request. |
void |
skippedEntity(String name)
Receive notification of a skipped entity. |
void |
startCDATA()
Report the start of a CDATA section. |
void |
startDocument()
Receive notification of the beginning of a document. |
void |
startDTD(String name,
String publicId,
String systemId)
Report the start of DTD declarations, if any. |
void |
startElement(String uri,
String loc,
String raw,
Attributes a)
Receive notification of the beginning of an element. |
void |
startEntity(String name)
Report the beginning of an entity. |
void |
startPrefixMapping(String prefix,
String uri)
Begin the scope of a prefix-URI Namespace mapping. |
| Methods inherited from class org.apache.cocoon.xml.AbstractXMLProducer |
setConsumer, setContentHandler, setLexicalHandler |
| Methods inherited from class org.apache.avalon.framework.logger.AbstractLogEnabled |
enableLogging, getLogger, setupLogger, setupLogger, setupLogger |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.cocoon.xml.XMLProducer |
setConsumer |
| Constructor Detail |
public TeeTransformer()
| Method Detail |
public void setup(SourceResolver resolver,
Map objectModel,
String src,
Parameters parameters)
throws ProcessingException,
SAXException,
IOException
SitemapModelComponentSourceResolver, objectModel Map,
the source and sitemap Parameters used to process the request.
setup in interface SitemapModelComponentsetup in class AbstractSAXTransformerProcessingException
SAXException
IOException
public void configure(Configuration configuration)
throws ConfigurationException
configure in interface Configurableconfigure in class AbstractSAXTransformerConfigurationExceptionpublic void setDocumentLocator(Locator locator)
setDocumentLocator in interface ContentHandlersetDocumentLocator in class AbstractSAXTransformerContentHandler.setDocumentLocator(org.xml.sax.Locator)
public void startDocument()
throws SAXException
startDocument in interface ContentHandlerstartDocument in class AbstractSAXTransformerSAXExceptionContentHandler.startDocument()
public void endDocument()
throws SAXException
endDocument in interface ContentHandlerendDocument in class AbstractSAXTransformerSAXExceptionContentHandler.endDocument()
public void startPrefixMapping(String prefix,
String uri)
throws SAXException
startPrefixMapping in interface ContentHandlerstartPrefixMapping in class AbstractSAXTransformerSAXExceptionContentHandler.startPrefixMapping(java.lang.String, java.lang.String)
public void endPrefixMapping(String prefix)
throws SAXException
endPrefixMapping in interface ContentHandlerendPrefixMapping in class AbstractSAXTransformerSAXExceptionContentHandler.endPrefixMapping(java.lang.String)
public void startElement(String uri,
String loc,
String raw,
Attributes a)
throws SAXException
startElement in interface ContentHandlerstartElement in class AbstractSAXTransformerSAXExceptionContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
public void endElement(String uri,
String loc,
String raw)
throws SAXException
endElement in interface ContentHandlerendElement in class AbstractSAXTransformerSAXExceptionContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
public void characters(char[] ch,
int start,
int len)
throws SAXException
characters in interface ContentHandlercharacters in class AbstractSAXTransformerSAXExceptionContentHandler.characters(char[], int, int)
public void ignorableWhitespace(char[] ch,
int start,
int len)
throws SAXException
ignorableWhitespace in interface ContentHandlerignorableWhitespace in class AbstractSAXTransformerSAXExceptionContentHandler.ignorableWhitespace(char[], int, int)
public void processingInstruction(String target,
String data)
throws SAXException
processingInstruction in interface ContentHandlerprocessingInstruction in class AbstractSAXTransformerSAXExceptionContentHandler.processingInstruction(java.lang.String, java.lang.String)
public void skippedEntity(String name)
throws SAXException
skippedEntity in interface ContentHandlerskippedEntity in class AbstractSAXTransformerSAXExceptionContentHandler.skippedEntity(java.lang.String)
public void startDTD(String name,
String publicId,
String systemId)
throws SAXException
startDTD in interface LexicalHandlerstartDTD in class AbstractSAXTransformerSAXExceptionLexicalHandler.startDTD(java.lang.String, java.lang.String, java.lang.String)
public void endDTD()
throws SAXException
endDTD in interface LexicalHandlerendDTD in class AbstractSAXTransformerSAXExceptionLexicalHandler.endDTD()
public void startEntity(String name)
throws SAXException
startEntity in interface LexicalHandlerstartEntity in class AbstractSAXTransformerSAXExceptionLexicalHandler.startEntity(java.lang.String)
public void endEntity(String name)
throws SAXException
endEntity in interface LexicalHandlerendEntity in class AbstractSAXTransformerSAXExceptionLexicalHandler.endEntity(java.lang.String)
public void startCDATA()
throws SAXException
startCDATA in interface LexicalHandlerstartCDATA in class AbstractSAXTransformerSAXExceptionLexicalHandler.startCDATA()
public void endCDATA()
throws SAXException
endCDATA in interface LexicalHandlerendCDATA in class AbstractSAXTransformerSAXExceptionLexicalHandler.endCDATA()
public void comment(char[] ch,
int start,
int len)
throws SAXException
comment in interface LexicalHandlercomment in class AbstractSAXTransformerSAXExceptionLexicalHandler.comment(char[], int, int)public void recycle()
AbstractXMLProducer
recycle in interface Recyclablerecycle in class AbstractSAXTransformer
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||