Interface Schematron
-
- All Known Implementing Classes:
DefaultSchematron
public interface Schematron
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.jdom2.DocumentgetCompiledSchematron(String phase)StringgetPath()The path to the Schematron ruleset.org.jdom2.DocumentgetProcessedSchematron()TransformerFactorygetTransformerFactory()voidtransform(Source xml, Result result)voidtransform(Source xml, Result result, String phase)voidtransform(Source xml, Result result, String phase, Map<String,String> parameters)
-
-
-
Method Detail
-
getPath
String getPath()
The path to the Schematron ruleset.- Returns:
- a URI path
-
getProcessedSchematron
org.jdom2.Document getProcessedSchematron()
-
getCompiledSchematron
org.jdom2.Document getCompiledSchematron(String phase) throws SchematronCompilationException
- Throws:
SchematronCompilationException
-
getTransformerFactory
TransformerFactory getTransformerFactory()
-
transform
void transform(Source xml, Result result) throws SchematronEvaluationException
- Throws:
SchematronEvaluationException
-
transform
void transform(Source xml, Result result, String phase) throws SchematronEvaluationException
- Throws:
SchematronEvaluationException
-
transform
void transform(Source xml, Result result, String phase, Map<String,String> parameters) throws SchematronEvaluationException
- Throws:
SchematronEvaluationException
-
-