Package org.xmlunit.builder
Interface TransformationBuilderBase<B extends TransformationBuilderBase<B>>
- All Known Subinterfaces:
Input.TransformationBuilder
,Transform.Builder
- All Known Implementing Classes:
AbstractTransformationBuilder
,Input.Transformation
,Transform.TransformationBuilder
public interface TransformationBuilderBase<B extends TransformationBuilderBase<B>>
Holds the common builder methods for XSLT related builders.
B
is the derived builder interface.
-
Method Summary
Modifier and TypeMethodDescriptionsets the TraX factory to use.withOutputProperty
(String name, String value) Adds an output property.withParameter
(String name, Object value) Adds a parameter.Sets the stylesheet to use.Sets the resolver to use for the document() function and xsi:import/include.
-
Method Details
-
usingFactory
sets the TraX factory to use. -
withOutputProperty
Adds an output property. -
withParameter
Adds a parameter. -
withStylesheet
Sets the stylesheet to use. -
withURIResolver
Sets the resolver to use for the document() function and xsi:import/include.
-