All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.validate.SchemaReader Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.11
Show newest 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 - 2024 Weber Informatics LLC | Privacy Policy