Class XSLoaderImpl
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.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$
- Author:
- Michael Glavassevich, IBM
-
-
Constructor Summary
Constructors Constructor Description XSLoaderImpl()No-args constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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 aLSInput.XSModelloadInputList(LSInputList is)Parses the content of XML Schema documents specified as a list ofLSInputs.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)
-
-
-
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 theDOMConfigurationinterface:error-handler(DOMErrorHandler) andresource-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.
-
-
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:
loadURIListin interfaceXSLoader- 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 ofLSInputs.- Specified by:
loadInputListin interfaceXSLoader- Parameters:
is- The list ofLSInputs 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.
-
load
public XSModel load(LSInput is)
Parse an XML Schema document from a resource identified by aLSInput.
-
setParameter
public void setParameter(String name, Object value) throws DOMException
- Specified by:
setParameterin interfaceDOMConfiguration- Throws:
DOMException
-
getParameter
public Object getParameter(String name) throws DOMException
- Specified by:
getParameterin interfaceDOMConfiguration- Throws:
DOMException
-
canSetParameter
public boolean canSetParameter(String name, Object value)
- Specified by:
canSetParameterin interfaceDOMConfiguration
-
getParameterNames
public DOMStringList getParameterNames()
- Specified by:
getParameterNamesin interfaceDOMConfiguration
-
-