| org.apache.xerces.xs.XSImplementation
All known Subclasses: org.apache.xerces.impl.xs.XSImplementationImpl,
XSImplementation | public interface XSImplementation (Code) | | This interface allows one to retrieve an instance of XSLoader .
This interface should be implemented on the same object that implements
DOMImplementation.
|
createXSLoader | public XSLoader createXSLoader(StringList versions) throws XSException(Code) | | Creates a new XSLoader. The newly constructed loader may then be
configured and used to load XML Schemas.
Parameters: versions - A list containing the versions of XML Schema documents which can be loaded by the XSLoader or null to permit XML Schema documents of any recognized version to be loaded by the XSLoader. An XML Schema loader. exception: XSException - NOT_SUPPORTED_ERR: Raised if the implementation does not support one of the specified versions. |
getRecognizedVersions | public StringList getRecognizedVersions()(Code) | | A list containing the versions of XML Schema documents recognized by
this XSImplemenation .
|
|
|