org.apache.xerces.impl.xs
Class XSLoaderImpl
java.lang.Object
org.apache.xerces.impl.xs.XSLoaderImpl
- DOMConfiguration, org.apache.xerces.xs.XSLoader
public final class XSLoaderImpl
extends java.lang.Object
implements org.apache.xerces.xs.XSLoader, DOMConfiguration
An implementation of XSLoader which wraps XMLSchemaLoader.
$Id: XSLoaderImpl.java,v 1.5 2005/05/02 22:01:29 mrglavas Exp $- Michael Glavassevich, IBM
boolean | canSetParameter(String name, Object value)
|
DOMConfiguration | getConfig() - The configuration of a document.
|
Object | getParameter(String name)
|
DOMStringList | getParameterNames()
|
org.apache.xerces.xs.XSModel | load(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
LSInput s.
|
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)
|
XSLoaderImpl
public XSLoaderImpl()
No-args constructor.
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
false
- getConfig in interface org.apache.xerces.xs.XSLoader
getParameter
public Object getParameter(String name)
throws DOMException
getParameterNames
public DOMStringList getParameterNames()
load
public org.apache.xerces.xs.XSModel load(LSInput is)
Parse an XML Schema document from a resource identified by a
LSInput
.
- load in interface org.apache.xerces.xs.XSLoader
is
- The DOMInputSource
from which the source
document is to be read.
- 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
LSInput
s.
- loadInputList in interface org.apache.xerces.xs.XSLoader
is
- The list of LSInput
s from which the XML
Schema documents are to be read.
- 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.
- loadURI in interface org.apache.xerces.xs.XSLoader
uri
- The location of the XML Schema document to be read.
- 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.
- loadURIList in interface org.apache.xerces.xs.XSLoader
- An XSModel representing the schema documents.
setParameter
public void setParameter(String name,
Object value)
throws DOMException
Copyright B) 1999-2005 Apache XML Project. All Rights Reserved.