| java.lang.Object org.apache.xerces.impl.xs.XSLoaderImpl
XSLoaderImpl | final public class XSLoaderImpl implements XSLoader,DOMConfiguration(Code) | | An implementation of XSLoader which wraps XMLSchemaLoader.
author: Michael Glavassevich, IBM version: $Id: XSLoaderImpl.java 449487 2006-09-24 21:11:28Z mrglavas $ |
Constructor Summary | |
public | XSLoaderImpl() No-args constructor. |
XSLoaderImpl | public XSLoaderImpl()(Code) | | No-args constructor.
|
getConfig | public DOMConfiguration getConfig()(Code) | | The configuration of a document. It maintains a table of recognized
parameters. Using the configuration, it is possible to change the
behavior of the load methods. The configuration may support the
setting of and the retrieval of the following non-boolean parameters
defined on the DOMConfiguration interface:
error-handler (DOMErrorHandler ) and
resource-resolver (LSResourceResolver ).
The following list of boolean parameters is defined:
-
"validate"
-
true
- [required] (default) Validate an XML
Schema during loading. If validation errors are found, the error
handler is notified.
false
- [optional] Do not
report errors during the loading of an XML Schema document.
|
load | public XSModel load(LSInput is)(Code) | | Parse an XML Schema document from a resource identified by a
LSInput .
Parameters: is - The LSInput from which the source document is to be read. An XSModel representing this schema. |
loadInputList | public XSModel loadInputList(LSInputList is)(Code) | | Parses the content of XML Schema documents specified as a list of
LSInput s.
Parameters: is - The list of LSInput s from which the XML Schema documents are to be read. An XSModel representing the schema documents. |
loadURI | public XSModel loadURI(String uri)(Code) | | Parse an XML Schema document from a location identified by a URI
reference. If the URI contains a fragment identifier, the behavior is
not defined by this specification.
Parameters: uri - The location of the XML Schema document to be read. An XSModel representing this schema. |
loadURIList | public XSModel loadURIList(StringList uriList)(Code) | | Parses the content of XML Schema documents specified as the list of URI
references. If the URI contains a fragment identifier, the behavior
is not defined by this specification.
Parameters: uriList - The list of URI locations. An XSModel representing the schema documents. |
|
|