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 wicketstuff-jing Show documentation
Show all versions of wicketstuff-jing Show documentation
Jing is a validator for RELAX NG and other schema languages. This
project was taken from http://code.google.com/p/jing-trang and
mavenized for inclusion in the Wicket Stuff HTML Validator.
The code was taken from the 20091111 release.
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);
}