Class SchemaNamespaceSupport
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.util.NamespaceSupport
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.xs.SchemaNamespaceSupport
-
- All Implemented Interfaces:
NamespaceContext
public class SchemaNamespaceSupport extends NamespaceSupport
This class customizes the behaviour of the util.NamespaceSupport class in order to easily implement some features that we need for efficient schema handling. It will not be generally useful.- Version:
- $Id$
- Author:
- Neil Graham, IBM
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.util.NamespaceSupport
NamespaceSupport.Prefixes
-
-
Field Summary
-
Fields inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.util.NamespaceSupport
fContext, fCurrentContext, fNamespace, fNamespaceSize, fPrefixes
-
Fields inherited from interface org.smooks.engine.delivery.sax.ng.org.apache.xerces.xni.NamespaceContext
XML_URI, XMLNS_URI
-
-
Constructor Summary
Constructors Constructor Description SchemaNamespaceSupport(SchemaNamespaceSupport nSupport)
SchemaNamespaceSupport(Element schemaRoot, SymbolTable symbolTable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]
getEffectiveLocalContext()
This method returns an array of Strings, as would be stored in a NamespaceSupport object.String
getURI(String prefix)
Look up a prefix and get the currently-mapped Namespace URI.void
makeGlobal()
void
setEffectiveContext(String[] namespaceDecls)
This method takes a set of Strings, as stored in a NamespaceSupport object, and "fools" the object into thinking that this is one unified context.-
Methods inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.util.NamespaceSupport
containsPrefix, declarePrefix, getAllPrefixes, getDeclaredPrefixAt, getDeclaredPrefixCount, getPrefix, popContext, pushContext, reset
-
-
-
-
Constructor Detail
-
SchemaNamespaceSupport
public SchemaNamespaceSupport(Element schemaRoot, SymbolTable symbolTable)
-
SchemaNamespaceSupport
public SchemaNamespaceSupport(SchemaNamespaceSupport nSupport)
-
-
Method Detail
-
setEffectiveContext
public void setEffectiveContext(String[] namespaceDecls)
This method takes a set of Strings, as stored in a NamespaceSupport object, and "fools" the object into thinking that this is one unified context. This is meant to be used in conjunction with things like local elements, whose declarations may be deeply nested but which for all practical purposes may be regarded as being one level below the globalelement--at least with regard to namespace declarations. It's worth noting that the context from which the strings are being imported had better be using the same SymbolTable.
-
getEffectiveLocalContext
public String[] getEffectiveLocalContext()
This method returns an array of Strings, as would be stored in a NamespaceSupport object. This array contains all declarations except those at the global level.
-
makeGlobal
public void makeGlobal()
-
getURI
public String getURI(String prefix)
Description copied from interface:NamespaceContext
Look up a prefix and get the currently-mapped Namespace URI.This method looks up the prefix in the current context. If no mapping is found, this methods will continue lookup in the parent context(s). Use the empty string ("") for the default Namespace.
- Specified by:
getURI
in interfaceNamespaceContext
- Overrides:
getURI
in classNamespaceSupport
- Parameters:
prefix
- The prefix to look up.- Returns:
- The associated Namespace URI, or null if the prefix is undeclared in this context.
- See Also:
NamespaceContext.getURI(String)
-
-