| java.lang.Object org.andromda.maven.plugin.site.XslTransformer
XslTransformer | public class XslTransformer (Code) | | Used to perform the transformation of XSL documents
within the site plugin.
author: Chad Brandon author: Vance Karimi |
Constructor Summary | |
public | XslTransformer() | public | XslTransformer(String projectName) Constructor that sets the project name used to replace variable inside generated
xdoc xml. |
XslTransformer | public XslTransformer()(Code) | | Default constructor
|
XslTransformer | public XslTransformer(String projectName)(Code) | | Constructor that sets the project name used to replace variable inside generated
xdoc xml.
Parameters: projectName - |
getProjectName | public String getProjectName()(Code) | | Returns the projectName. |
setProjectName | public void setProjectName(String projectName)(Code) | | Parameters: projectName - The projectName to set. |
transform | public void transform(String xmlDocument, String transformation, String outputLocation)(Code) | | Applies the given XSLT files to the model in the order in which they are found.
Parameters: xmlDocument - The full path of the original XML Parameters: transformation - The full path of the XSLT Parameters: outputLocation - The full path of the output xdoc XML |
transform | public void transform(String xmlDocument, URL xslt, String outputLocation)(Code) | | Applies the given XSLT files to the model in the order in which they are found.
Parameters: xmlDocument - The full path of the original XML Parameters: xslt - The URL of the XSLT Parameters: outputLocation - The full path of the output xdoc XML |
|
|