org.apache.xerces.impl.xs

Class XSLoaderImpl

Implemented Interfaces:
org.w3c.dom.DOMConfiguration, org.apache.xerces.xs.XSLoader

public final class XSLoaderImpl
extends java.lang.Object
implements org.apache.xerces.xs.XSLoader, org.w3c.dom.DOMConfiguration

An implementation of XSLoader which wraps XMLSchemaLoader.
Version:
$Id: XSLoaderImpl.java 406145 2006-05-13 19:39:24Z mrglavas $
Author:
Michael Glavassevich, IBM

Constructor Summary

XSLoaderImpl()
No-args constructor.

Method Summary

boolean
canSetParameter(String name, Object value)
org.w3c.dom.DOMConfiguration
getConfig()
The configuration of a document.
Object
getParameter(String name)
org.w3c.dom.DOMStringList
getParameterNames()
org.apache.xerces.xs.XSModel
load(org.w3c.dom.ls.LSInput is)
Parse an XML Schema document from a resource identified by a LSInput .
org.apache.xerces.xs.XSModel
loadInputList(org.apache.xerces.xs.LSInputList is)
Parses the content of XML Schema documents specified as a list of LSInputs.
org.apache.xerces.xs.XSModel
loadURI(String uri)
Parse an XML Schema document from a location identified by a URI reference.
org.apache.xerces.xs.XSModel
loadURIList(org.apache.xerces.xs.StringList uriList)
Parses the content of XML Schema documents specified as the list of URI references.
void
setParameter(String name, Object value)

Constructor Details

XSLoaderImpl

public XSLoaderImpl()
No-args constructor.

Method Details

canSetParameter

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

getConfig

public org.w3c.dom.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
false
Specified by:
getConfig in interface org.apache.xerces.xs.XSLoader

getParameter

public Object getParameter(String name)
            throws org.w3c.dom.DOMException
Specified by:
getParameter in interface org.w3c.dom.DOMConfiguration

getParameterNames

public org.w3c.dom.DOMStringList getParameterNames()
Specified by:
getParameterNames in interface org.w3c.dom.DOMConfiguration

load

public org.apache.xerces.xs.XSModel load(org.w3c.dom.ls.LSInput is)
Parse an XML Schema document from a resource identified by a LSInput .
Specified by:
load in interface org.apache.xerces.xs.XSLoader
Parameters:
is - The LSInput from which the source document is to be read.
Returns:
An XSModel representing this schema.

loadInputList

public org.apache.xerces.xs.XSModel loadInputList(org.apache.xerces.xs.LSInputList is)
Parses the content of XML Schema documents specified as a list of LSInputs.
Specified by:
loadInputList in interface org.apache.xerces.xs.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 org.apache.xerces.xs.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 org.apache.xerces.xs.XSLoader
Parameters:
uri - The location of the XML Schema document to be read.
Returns:
An XSModel representing this schema.

loadURIList

public org.apache.xerces.xs.XSModel loadURIList(org.apache.xerces.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.
Specified by:
loadURIList in interface org.apache.xerces.xs.XSLoader
Parameters:
Returns:
An XSModel representing the schema documents.

setParameter

public void setParameter(String name,
                         Object value)
            throws org.w3c.dom.DOMException
Specified by:
setParameter in interface org.w3c.dom.DOMConfiguration

Copyright B) 1999-2006 The Apache Software Foundation. All Rights Reserved.