Methods Summary |
---|
public boolean | canSetParameter(java.lang.String name, java.lang.Object value)
return fSchemaLoader.canSetParameter(name, value);
|
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
- [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.
return this;
|
public java.lang.Object | getParameter(java.lang.String name)
return fSchemaLoader.getParameter(name);
|
public org.w3c.dom.DOMStringList | getParameterNames()
return fSchemaLoader.getParameterNames();
|
public com.sun.org.apache.xerces.internal.xs.XSModel | load(org.w3c.dom.ls.LSInput is)Parse an XML Schema document from a resource identified by a
LSInput .
try {
fGrammarPool.clear();
return ((XSGrammar) fSchemaLoader.loadGrammar(fSchemaLoader.dom2xmlInputSource(is))).toXSModel();
}
catch (Exception e) {
fSchemaLoader.reportDOMFatalError(e);
return null;
}
|
public com.sun.org.apache.xerces.internal.xs.XSModel | loadInputList(com.sun.org.apache.xerces.internal.xs.LSInputList is)Parses the content of XML Schema documents specified as a list of
LSInput s.
final int length = is.getLength();
if (length == 0) {
return null;
}
try {
fGrammarPool.clear();
for (int i = 0; i < length; ++i) {
fSchemaLoader.loadGrammar(fSchemaLoader.dom2xmlInputSource(is.item(i)));
}
return fGrammarPool.toXSModel();
}
catch (Exception e) {
fSchemaLoader.reportDOMFatalError(e);
return null;
}
|
public com.sun.org.apache.xerces.internal.xs.XSModel | loadURI(java.lang.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.
try {
fGrammarPool.clear();
return ((XSGrammar) fSchemaLoader.loadGrammar(new XMLInputSource(null, uri, null))).toXSModel();
}
catch (Exception e){
fSchemaLoader.reportDOMFatalError(e);
return null;
}
|
public com.sun.org.apache.xerces.internal.xs.XSModel | loadURIList(com.sun.org.apache.xerces.internal.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.
int length = uriList.getLength();
if (length == 0) {
return null;
}
try {
fGrammarPool.clear();
for (int i = 0; i < length; ++i) {
fSchemaLoader.loadGrammar(new XMLInputSource(null, uriList.item(i), null));
}
return fGrammarPool.toXSModel();
}
catch (Exception e) {
fSchemaLoader.reportDOMFatalError(e);
return null;
}
|
public void | setParameter(java.lang.String name, java.lang.Object value)
fSchemaLoader.setParameter(name, value);
|