| org.apache.xerces.xinclude.MultipleScopeNamespaceSupport org.apache.xerces.xinclude.XIncludeNamespaceSupport
XIncludeNamespaceSupport | public class XIncludeNamespaceSupport extends MultipleScopeNamespaceSupport (Code) | | 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.
author: Peter McCracken, IBM version: $Id: XIncludeNamespaceSupport.java 447243 2006-09-18 05:15:27Z mrglavas $ |
Method Summary | |
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. | public void | pushContext() Pushes a new context onto the stack. | 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]. |
XIncludeNamespaceSupport | public XIncludeNamespaceSupport()(Code) | | |
getURIFromIncludeParent | public String getURIFromIncludeParent(String prefix)(Code) | | 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 the URI corresponding to the prefix in the context of the include parent |
pushContext | public void pushContext()(Code) | | Pushes a new context onto the stack.
|
setContextInvalid | public void setContextInvalid()(Code) | | 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.
|
|
|