| java.lang.Object org.custommonkey.xmlunit.Transform
Transform | public class Transform (Code) | | Handy wrapper for an XSLT transformation performed using JAXP/Trax.
Note that transformation is not actually performed until a call to
getResultXXX method, and Templates are not used.
Examples and more at xmlunit.sourceforge.net
|
Transform | public Transform(String input, String stylesheet)(Code) | | Create a transformation using String input XML and String stylesheet
Parameters: input - Parameters: stylesheet - |
Transform | public Transform(String input, File stylesheet)(Code) | | Create a transformation using String input XML and stylesheet in a File
Parameters: input - Parameters: stylesheet - |
Transform | public Transform(InputSource input, InputSource stylesheet)(Code) | | Create a transformation using InputSource input XML and
InputSource stylesheet
Parameters: input - Parameters: stylesheet - |
Transform | public Transform(InputSource input, File stylesheet)(Code) | | Create a transformation using InputSource input XML and
stylesheet in a File
Parameters: input - Parameters: stylesheet - |
Transform | public Transform(Node sourceNode)(Code) | | Create a transformation that allows us to serialize a DOM Node
Parameters: source - |
Transform | public Transform(Node sourceNode, String stylesheet)(Code) | | Create a transformation from an input Node and stylesheet in a String
Parameters: sourceNode - Parameters: stylesheet - |
Transform | public Transform(Node sourceNode, File stylesheet)(Code) | | Create a transformation from an input Node and stylesheet in a File
Parameters: sourceNode - Parameters: stylesheet - |
Transform | public Transform(Source inputSource, Source stylesheetSource)(Code) | | Create a transformation using Source input XML and Source stylesheet
Parameters: inputReader - Parameters: stylesheetReader - |
setOutputProperty | public void setOutputProperty(String name, String value)(Code) | | Override an output property specified in the transformation stylesheet
Parameters: name - Parameters: value - |
|
|