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

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

There is a newer version: 20151127.0.1
Show newest version
package com.thaiopensource.validate;

import com.thaiopensource.validate.SchemaReader;

/**
 * A factory for SchemaReader. A class that implements this interface can be
 * automatically discovered by SchemaReaderLoader, if it has
 * a 0-argument constructor and if its name is listed in the file
 * META-INF/services/com.thaiopensource.validate.SchemaReaderFactory.
 *
 * @see SchemaReaderLoader
 * @see SchemaReader
 */
public interface SchemaReaderFactory {
  /**
   * Creates a SchemaReader for a particular schema language.
   *
   * @param namespaceUri a String identifing the schema language; must not be null;
   * for schema languages that use XML, this should be the namespace URI
   * of the root element if the root element has a non-absent namespace URI
   *
   * @return a SchemaReader for the specified schema language, or null,
   * if this SchemaReaderFactory cannot create a SchemaReader for the specified
   * schema language
   */
  public SchemaReader createSchemaReader(String namespaceUri);

  Option getOption(String uri);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy