org.apache.xerces.impl.xs
Class XSLoaderImpl

java.lang.Object
  extended by org.apache.xerces.impl.xs.XSLoaderImpl
All Implemented Interfaces:
XSLoader, DOMConfiguration

public final class XSLoaderImpl
extends Object
implements XSLoader, DOMConfiguration

An implementation of XSLoader which wraps XMLSchemaLoader.

Version:
$Id: XSLoaderImpl.java 699892 2008-09-28 21:08:27Z mrglavas $
Author:
Michael Glavassevich, IBM

Constructor Summary
XSLoaderImpl()
          No-args constructor.
 
Method Summary
 boolean canSetParameter(String name, Object value)
           
 DOMConfiguration getConfig()
          The configuration of a document.
 Object getParameter(String name)
           
 DOMStringList getParameterNames()
           
 XSModel load(LSInput is)
          Parse an XML Schema document from a resource identified by a LSInput .
 XSModel loadInputList(LSInputList is)
          Parses the content of XML Schema documents specified as a list of LSInputs.
 XSModel loadURI(String uri)
          Parse an XML Schema document from a location identified by a URI reference.
 XSModel loadURIList(StringList uriList)
          Parses the content of XML Schema documents specified as the list of URI references.
 void setParameter(String name, Object value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XSLoaderImpl

public XSLoaderImpl()
No-args constructor.

Method Detail

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.

Specified by:
getConfig in interface XSLoader

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.

Specified by:
loadURIList in interface XSLoader
Parameters:
uriList - The list of URI locations.
Returns:
An XSModel representing the schema documents.

loadInputList

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

Specified by:
loadInputList in interface XSLoader
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.

Specified by:
loadURI in interface XSLoader
Parameters:
uri - The location of the XML Schema document to be read.
Returns:
An XSModel representing this schema.

load

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

Specified by:
load in interface XSLoader
Parameters:
is - The LSInput from which the source document is to be read.
Returns:
An XSModel representing this schema.

setParameter

public void setParameter(String name,
                         Object value)
                  throws DOMException
Specified by:
setParameter in interface DOMConfiguration
Throws:
DOMException

getParameter

public Object getParameter(String name)
                    throws DOMException
Specified by:
getParameter in interface DOMConfiguration
Throws:
DOMException

canSetParameter

public boolean canSetParameter(String name,
                               Object value)
Specified by:
canSetParameter in interface DOMConfiguration

getParameterNames

public DOMStringList getParameterNames()
Specified by:
getParameterNames in interface DOMConfiguration


Copyright © 2011. All Rights Reserved.