API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.relaxng.datatype. DatatypeLibraryFactory View Javadoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

font color='#880088'>
package org.relaxng.datatype;

/**
 * Factory class for the DatatypeLibrary class.
 * 
 * <p>
 * The datatype library should provide the implementation of
 * this interface if it wants to be found by the schema processors.
 * The implementor also have to place a file in your jar file.
 * See the reference datatype library implementation for detail.
 * 
 * @author <a href="mailto:jjc@jclark.com">James Clark</a>
 * @author <a href="mailto:kohsuke.kawaguchi@sun.com">Kohsuke KAWAGUCHI</a>
 */
public interface DatatypeLibraryFactory {
	/**
	 * Creates a new instance of a DatatypeLibrary that supports 
	 * the specified namespace URI.
	 * 
	 * @return
	 *		<code>null</code> if the specified namespace URI is not
	 *		supported.	
	 */
	DatatypeLibrary createDatatypeLibrary( String namespaceURI );
}

Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar