org.apache.xerces.impl.xs

Class XSLoaderImpl

public final class XSLoaderImpl extends Object implements XSLoader, DOMConfiguration

An implementation of XSLoader which wraps XMLSchemaLoader.

Version: $Id: XSLoaderImpl.java,v 1.5 2005/05/02 22:01:29 mrglavas Exp $

Author: Michael Glavassevich, IBM

UNKNOWN:

Constructor Summary
XSLoaderImpl()
No-args constructor.
Method Summary
booleancanSetParameter(String name, Object value)
DOMConfigurationgetConfig()
The configuration of a document.
ObjectgetParameter(String name)
DOMStringListgetParameterNames()
XSModelload(LSInput is)
Parse an XML Schema document from a resource identified by a LSInput .
XSModelloadInputList(LSInputList is)
Parses the content of XML Schema documents specified as a list of LSInputs.
XSModelloadURI(String uri)
Parse an XML Schema document from a location identified by a URI reference.
XSModelloadURIList(StringList uriList)
Parses the content of XML Schema documents specified as the list of URI references.
voidsetParameter(String name, Object value)

Constructor Detail

XSLoaderImpl

public XSLoaderImpl()
No-args constructor.

Method Detail

canSetParameter

public boolean canSetParameter(String name, Object value)

getConfig

public DOMConfiguration getConfig()
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.

getParameter

public Object getParameter(String name)

getParameterNames

public DOMStringList getParameterNames()

load

public XSModel load(LSInput is)
Parse an XML Schema document from a resource identified by a LSInput .

Parameters: is The DOMInputSource from which the source document is to be read.

Returns: An XSModel representing this schema.

loadInputList

public XSModel loadInputList(LSInputList is)
Parses the content of XML Schema documents specified as a list of LSInputs.

Parameters: is The list of LSInputs from which the XML Schema documents are to be read.

Returns: An XSModel representing the schema documents.

loadURI

public XSModel loadURI(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.

Parameters: uri The location of the XML Schema document to be read.

Returns: An XSModel representing this schema.

loadURIList

public XSModel loadURIList(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.

Parameters: uri The list of URI locations.

Returns: An XSModel representing the schema documents.

setParameter

public void setParameter(String name, Object value)
Copyright B) 1999-2005 Apache XML Project. All Rights Reserved.