use of com.helger.schematron.ESchematronMode in project ph-schematron by phax.
the class SchematronValidationMojo method setSchematronProcessingEngine.
public void setSchematronProcessingEngine(@Nullable final String sEngine) {
final ESchematronMode eMode = ESchematronMode.getFromIDOrNull(sEngine);
m_sSchematronProcessingEngine = eMode == null ? null : eMode.getID();
if (getLog().isDebugEnabled())
getLog().debug("Schematron processing mode set to '" + eMode + "'");
}
Aggregations