Package org.relaxng.datatype
Interface DatatypeLibraryFactory
-
- All Known Implementing Classes:
DatatypeLibraryFactoryImpl,DatatypeLibraryLoader,DatatypeLibraryLoader
public interface DatatypeLibraryFactoryFactory class for the DatatypeLibrary class.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:
- James Clark, Kohsuke KAWAGUCHI
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatatypeLibrarycreateDatatypeLibrary(java.lang.String namespaceURI)Creates a new instance of a DatatypeLibrary that supports the specified namespace URI.
-
-
-
Method Detail
-
createDatatypeLibrary
DatatypeLibrary createDatatypeLibrary(java.lang.String namespaceURI)
Creates a new instance of a DatatypeLibrary that supports the specified namespace URI.- Returns:
nullif the specified namespace URI is not supported.
-
-