|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xerces.impl.xs.XMLSchemaLoader
This class implements XMLGrammarLoader. It is designed to interact either with a proxy for a user application which wants to preparse schemas, or with our own Schema validator. It is hoped that none of these "external" classes will therefore need to communicate directly with XSDHandler in future.
This class only knows how to make XSDHandler do its thing. The caller must ensure that all its properties (schemaLocation, JAXPSchemaSource etc.) have been properly set.
Field Summary | |
protected static java.lang.String |
ALLOW_JAVA_ENCODINGS
Feature identifier: allow java encodings to be recognized when parsing schema docs. |
protected static java.lang.String |
CONTINUE_AFTER_FATAL_ERROR
Feature identifier: continue after fatal error. |
static java.lang.String |
ENTITY_RESOLVER
Property identifier: entity resolver. |
protected static java.lang.String |
ERROR_HANDLER
Property identifier: error handler. |
static java.lang.String |
ERROR_REPORTER
Property identifier: error reporter. |
protected static java.lang.String |
JAXP_SCHEMA_SOURCE
Property identifier: JAXP schema source. |
protected static java.lang.String |
SCHEMA_FULL_CHECKING
Feature identifier: schema full checking |
protected static java.lang.String |
SCHEMA_LOCATION
Property identifier: schema location. |
protected static java.lang.String |
SCHEMA_NONS_LOCATION
Property identifier: no namespace schema location. |
protected static java.lang.String |
STANDARD_URI_CONFORMANT_FEATURE
Feature identifier: standard uri conformant feature. |
static java.lang.String |
SYMBOL_TABLE
Property identifier: symbol table. |
static java.lang.String |
XMLGRAMMAR_POOL
Property identifier: grammar pool. |
Constructor Summary | |
XMLSchemaLoader()
|
|
XMLSchemaLoader(SymbolTable symbolTable)
|
Method Summary | |
org.apache.xerces.xni.parser.XMLEntityResolver |
getEntityResolver()
Returns the registered entity resolver. |
org.apache.xerces.xni.parser.XMLErrorHandler |
getErrorHandler()
Returns the registered error handler. |
boolean |
getFeature(java.lang.String featureId)
Returns the state of a feature. |
java.util.Locale |
getLocale()
Return the Locale the XMLGrammarLoader is using. |
java.lang.Object |
getProperty(java.lang.String propertyId)
Returns the state of a property. |
java.lang.String[] |
getRecognizedFeatures()
Returns a list of feature identifiers that are recognized by this XMLGrammarLoader. |
java.lang.String[] |
getRecognizedProperties()
Returns a list of property identifiers that are recognized by this XMLGrammarLoader. |
org.apache.xerces.xni.grammars.Grammar |
loadGrammar(org.apache.xerces.xni.parser.XMLInputSource source)
Returns a Grammar object by parsing the contents of the entity pointed to by source. |
static void |
processExternalHints(java.lang.String sl,
java.lang.String nsl,
java.util.Hashtable locations,
XMLErrorReporter er)
|
void |
reset()
|
static org.apache.xerces.xni.parser.XMLInputSource |
resolveDocument(XSDDescription desc,
java.util.Hashtable locationPairs,
org.apache.xerces.xni.parser.XMLEntityResolver entityResolver)
|
void |
setEntityResolver(org.apache.xerces.xni.parser.XMLEntityResolver entityResolver)
Sets the entity resolver. |
void |
setErrorHandler(org.apache.xerces.xni.parser.XMLErrorHandler errorHandler)
Sets the error handler. |
void |
setFeature(java.lang.String featureId,
boolean state)
Sets the state of a feature. |
void |
setLocale(java.util.Locale locale)
Set the locale to use for messages. |
void |
setProperty(java.lang.String propertyId,
java.lang.Object state)
Sets the state of a property. |
void |
setUseDeclPool(boolean use)
|
static boolean |
tokenizeSchemaLocationStr(java.lang.String schemaStr,
java.util.Hashtable locations)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected static final java.lang.String SCHEMA_FULL_CHECKING
protected static final java.lang.String CONTINUE_AFTER_FATAL_ERROR
protected static final java.lang.String ALLOW_JAVA_ENCODINGS
protected static final java.lang.String STANDARD_URI_CONFORMANT_FEATURE
public static final java.lang.String SYMBOL_TABLE
public static final java.lang.String ERROR_REPORTER
protected static final java.lang.String ERROR_HANDLER
public static final java.lang.String ENTITY_RESOLVER
public static final java.lang.String XMLGRAMMAR_POOL
protected static final java.lang.String SCHEMA_LOCATION
protected static final java.lang.String SCHEMA_NONS_LOCATION
protected static final java.lang.String JAXP_SCHEMA_SOURCE
Constructor Detail |
public XMLSchemaLoader()
public XMLSchemaLoader(SymbolTable symbolTable)
Method Detail |
public java.lang.String[] getRecognizedFeatures()
getRecognizedFeatures
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
public boolean getFeature(java.lang.String featureId) throws org.apache.xerces.xni.parser.XMLConfigurationException
getFeature
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
featureId
- The feature identifier.org.apache.xerces.xni.parser.XMLConfigurationException
- Thrown on configuration error.public void setFeature(java.lang.String featureId, boolean state) throws org.apache.xerces.xni.parser.XMLConfigurationException
setFeature
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
featureId
- The feature identifier.state
- The state of the feature.org.apache.xerces.xni.parser.XMLConfigurationException
- Thrown when a feature is not
recognized or cannot be set.public java.lang.String[] getRecognizedProperties()
getRecognizedProperties
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
public java.lang.Object getProperty(java.lang.String propertyId) throws org.apache.xerces.xni.parser.XMLConfigurationException
getProperty
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
propertyId
- The property identifier.org.apache.xerces.xni.parser.XMLConfigurationException
- Thrown on configuration error.public void setProperty(java.lang.String propertyId, java.lang.Object state) throws org.apache.xerces.xni.parser.XMLConfigurationException, java.lang.ClassCastException
setProperty
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
propertyId
- The property identifier.state
- The state of the property.org.apache.xerces.xni.parser.XMLConfigurationException
- Thrown when a property is not
recognized or cannot be set.public void setLocale(java.util.Locale locale)
setLocale
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
locale
- The locale object to use for localization of messages.org.apache.xerces.xni.XNIException
- Thrown if the parser does not support the
specified locale.public java.util.Locale getLocale()
getLocale
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
public void setErrorHandler(org.apache.xerces.xni.parser.XMLErrorHandler errorHandler)
setErrorHandler
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
errorHandler
- The error handler.public org.apache.xerces.xni.parser.XMLErrorHandler getErrorHandler()
getErrorHandler
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
public void setEntityResolver(org.apache.xerces.xni.parser.XMLEntityResolver entityResolver)
setEntityResolver
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
entityResolver
- The new entity resolver.public org.apache.xerces.xni.parser.XMLEntityResolver getEntityResolver()
getEntityResolver
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
public void reset()
public void setUseDeclPool(boolean use)
public org.apache.xerces.xni.grammars.Grammar loadGrammar(org.apache.xerces.xni.parser.XMLInputSource source) throws java.io.IOException, org.apache.xerces.xni.XNIException
loadGrammar
in interface org.apache.xerces.xni.grammars.XMLGrammarLoader
source
- the location of the entity which forms
the starting point of the grammar to be constructed.java.io.IOException
- When a problem is encountered reading the entity
XNIException When a condition arises (such as a FatalError) that requires parsing
of the entity be terminated.public static org.apache.xerces.xni.parser.XMLInputSource resolveDocument(XSDDescription desc, java.util.Hashtable locationPairs, org.apache.xerces.xni.parser.XMLEntityResolver entityResolver) throws java.io.IOException
public static void processExternalHints(java.lang.String sl, java.lang.String nsl, java.util.Hashtable locations, XMLErrorReporter er)
public static boolean tokenizeSchemaLocationStr(java.lang.String schemaStr, java.util.Hashtable locations)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |