| |
|
| java.lang.Object org.apache.cactus.internal.server.runner.XMLTransformer
XMLTransformer | public class XMLTransformer (Code) | | Helper class that handles the transformation of the XML test results to
some output format determined by a stylesheet.
since: Cactus 1.5 version: $Id: XMLTransformer.java 238991 2004-05-22 11:34:50Z vmassol $ |
Method Summary | |
public String | getContentType() Returns the content type that will be produced by the XSLT stylesheet
after transformation. | public void | transform(Reader theXml, Writer theWriter) Performs the actual transformation. |
getContentType | public String getContentType()(Code) | | Returns the content type that will be produced by the XSLT stylesheet
after transformation.
The content type |
transform | public void transform(Reader theXml, Writer theWriter) throws TransformerException(Code) | | Performs the actual transformation.
Parameters: theXml - The XML source to transform Parameters: theWriter - The writer to which the transformation result should be written. exception: TransformerException - if an error occurs when applying theXSL template to the XML source |
|
|
|