FileDocCategorySizeDatePackage
XSLoader.javaAPI DocJava SE 5 API5475Fri Aug 26 14:55:58 BST 2005com.sun.org.apache.xerces.internal.xs

XSLoader

public interface XSLoader
An interface that provides a method to load XML Schema documents. This interface uses the DOM Level 3 Core and Load and Save interfaces.

Fields Summary
Constructors Summary
Methods Summary
public org.w3c.dom.DOMConfigurationgetConfig()
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.

public com.sun.org.apache.xerces.internal.xs.XSModelload(org.w3c.dom.ls.LSInput is)
Parse an XML Schema document from a resource identified by a LSInput .

param
is The DOMInputSource from which the source document is to be read.
return
An XSModel representing this schema.

public com.sun.org.apache.xerces.internal.xs.XSModelloadInputList(com.sun.org.apache.xerces.internal.xs.LSInputList is)
Parses the content of XML Schema documents specified as a list of LSInputs.

param
is The list of LSInputs from which the XML Schema documents are to be read.
return
An XSModel representing schema documents.

public com.sun.org.apache.xerces.internal.xs.XSModelloadURI(java.lang.String uri)
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.

param
uri The location of the XML Schema document to be read.
return
An XSModel representing this schema.

public com.sun.org.apache.xerces.internal.xs.XSModelloadURIList(com.sun.org.apache.xerces.internal.xs.StringList uriList)
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.

param
uri The list of URI locations.
return
An XSModel representing the schema documents.