com.thaiopensource.validate.SchemaReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jing Show documentation
Show all versions of jing Show documentation
Jing - tool for validating RelaxNG - (OSGi-compatible version)
package com.thaiopensource.validate;
import com.thaiopensource.util.PropertyMap;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import javax.xml.transform.sax.SAXSource;
import java.io.IOException;
/**
* A SchemaReader object is immutable and can thus be safely accessed
* concurrently from multiple threads.
*/
public interface SchemaReader {
public static final String BASE_URI = "http://www.thaiopensource.com/validate/";
/**
* Creates a Schema
by reading it from an InputSource
.
*
* @param source
* @param properties a PropertyMap
to control the schema creation;
* must not be null
@return a newly created Schema
, never null
* @throws IOException if an I/O error occurs
* @throws SAXException
* @throws IncorrectSchemaException
*
* @see ValidateProperty
*/
Schema createSchema(InputSource source, PropertyMap properties)
throws IOException, SAXException, IncorrectSchemaException;
Schema createSchema(SAXSource source, PropertyMap properties)
throws IOException, SAXException, IncorrectSchemaException;
Option getOption(String uri);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy