Class XIncludeNamespaceSupport
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.util.NamespaceSupport
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.xinclude.MultipleScopeNamespaceSupport
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.xinclude.XIncludeNamespaceSupport
-
- All Implemented Interfaces:
NamespaceContext
public class XIncludeNamespaceSupport extends MultipleScopeNamespaceSupport
This is an implementation of NamespaceContext which is intended to be used for XInclude processing. It enables each context to be marked as invalid, if necessary, to indicate that the namespaces recorded on those contexts won't be apparent in the resulting infoset.- Version:
- $Id$
- Author:
- Peter McCracken, 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.xinclude.MultipleScopeNamespaceSupport
fCurrentScope, fScope
-
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 XIncludeNamespaceSupport()
XIncludeNamespaceSupport(NamespaceContext context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getURIFromIncludeParent(String prefix)
This returns the namespace URI which was associated with the given pretext, in the context that existed at the include parent of the current element.void
pushContext()
Pushes a new context onto the stack.void
setContextInvalid()
This method is used to set a context invalid for XInclude namespace processing.-
Methods inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.xinclude.MultipleScopeNamespaceSupport
getAllPrefixes, getPrefix, getPrefix, getPrefix, getScopeForContext, getURI, getURI, getURI, popScope, pushScope, reset
-
Methods inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.util.NamespaceSupport
containsPrefix, declarePrefix, getDeclaredPrefixAt, getDeclaredPrefixCount, popContext
-
-
-
-
Constructor Detail
-
XIncludeNamespaceSupport
public XIncludeNamespaceSupport()
-
XIncludeNamespaceSupport
public XIncludeNamespaceSupport(NamespaceContext context)
- Parameters:
context
-
-
-
Method Detail
-
pushContext
public void pushContext()
Pushes a new context onto the stack.- Specified by:
pushContext
in interfaceNamespaceContext
- Overrides:
pushContext
in classNamespaceSupport
- See Also:
NamespaceContext.pushContext()
-
setContextInvalid
public void setContextInvalid()
This method is used to set a context invalid for XInclude namespace processing. Any context defined by an <include> or <fallback> element is not valid for processing the include parent's [in-scope namespaces]. Thus, contexts defined by these elements are set to invalid by the XInclude processor using this method.
-
getURIFromIncludeParent
public String getURIFromIncludeParent(String prefix)
This returns the namespace URI which was associated with the given pretext, in the context that existed at the include parent of the current element. The include parent is the last element, before the current one, which was not set to an invalid context using setContextInvalid()- Parameters:
prefix
- the prefix of the desired URI- Returns:
- the URI corresponding to the prefix in the context of the include parent
-
-