Oxygen XML Editor 11.2 Author API

ro.sync.contentcompletion.xml
Class Context

java.lang.Object
  extended by ro.sync.contentcompletion.xml.Context
All Implemented Interfaces:
Cloneable
Direct Known Subclasses:
ro.sync.contentcompletion.xml.WhatContextInParent, WhatElementsCanGoHereContext

public class Context
extends Object
implements Cloneable

The context for a node contains:


Field Summary
protected  Stack<ContextElement> elementStack
          The stack with the ContextElement objects, ancestors of the element for which the Context was built.
protected  ProxyNamespaceMapping prefixNamespaceMapping
          The mapping between namespace prefixes and URI's determined to the point where the Context was built.
protected  List<ContextElement> previousSiblingElements
          The list of ContextElement objects representing the previous siblings (in document order) of the element for which the Context was built.
protected  XMLReader xmlReader
          The XMLReader used to create sources for executing XPath expressions in the Context.
 
Constructor Summary
Context()
           
 
Method Summary
 Object clone()
           
 List<String> executeXPath(String expression, String[] prefixNamespaceMappings)
          Executes an XPath expression over the entire document.
 Stack<ContextElement> getElementStack()
          Gets the stack of ContextElement representing the ancestors of the element for which the Context was built.
 ProxyNamespaceMapping getPrefixNamespaceMapping()
          Gets the mapping between namespace prefixes and URI's to the point the Context was built.
 List<ContextElement> getPreviousSiblingElements()
          Get the list of previous sibling elements of the element the Context was built for.
 Attribute[] getRootAttributes()
          Get the list with the attributes of the root element.
 void pushContextElement(ContextElement element, List<ContextElement> previousSiblingElements)
          Updates the context by adding the given element in the context.
 void setElementStack(Stack<ContextElement> elementStack)
          Sets the stack consisting of ContextElement representing the ancestor elements of the element for which the Context was built.
 void setPrefixNamespaceMapping(ProxyNamespaceMapping prefixNamespaceMapping)
          Sets the mapping between the namespace prefixes and URI's to the point where the Context was built.
 void setPreviousSiblingElements(List<ContextElement> previousSiblingElements)
          Sets the list of ContextElement representing the previous siblings (in document order) of the element the Context was built for.
 void setXMLReader(XMLReader xmlReader)
          Set the XMLReader used for creating a SAX source.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

elementStack

protected Stack<ContextElement> elementStack
The stack with the ContextElement objects, ancestors of the element for which the Context was built.


prefixNamespaceMapping

protected ProxyNamespaceMapping prefixNamespaceMapping
The mapping between namespace prefixes and URI's determined to the point where the Context was built.


previousSiblingElements

protected List<ContextElement> previousSiblingElements
The list of ContextElement objects representing the previous siblings (in document order) of the element for which the Context was built.


xmlReader

protected XMLReader xmlReader
The XMLReader used to create sources for executing XPath expressions in the Context.

Constructor Detail

Context

public Context()
Method Detail

setElementStack

public void setElementStack(Stack<ContextElement> elementStack)
Sets the stack consisting of ContextElement representing the ancestor elements of the element for which the Context was built. The root is always added the first on the stack.

Parameters:
elementStack - The stack of ancestor ContextElement.

getElementStack

public Stack<ContextElement> getElementStack()
Gets the stack of ContextElement representing the ancestors of the element for which the Context was built. The root is always added the first on the stack.

Returns:
The stack with the ancestor ContextElement.

setPrefixNamespaceMapping

public void setPrefixNamespaceMapping(ProxyNamespaceMapping prefixNamespaceMapping)
Sets the mapping between the namespace prefixes and URI's to the point where the Context was built.

Parameters:
prefixNamespaceMapping - The new mapping to be set.

getPrefixNamespaceMapping

public ProxyNamespaceMapping getPrefixNamespaceMapping()
Gets the mapping between namespace prefixes and URI's to the point the Context was built.

Returns:
The mapping between namespace prefixes and URI's.

getRootAttributes

public Attribute[] getRootAttributes()
Get the list with the attributes of the root element.

Returns:
A list of Attribute objects representing the attributes of the root element.

setPreviousSiblingElements

public void setPreviousSiblingElements(List<ContextElement> previousSiblingElements)
Sets the list of ContextElement representing the previous siblings (in document order) of the element the Context was built for.

Parameters:
previousSiblingElements - The list of previous sibling ContextElement.

getPreviousSiblingElements

public List<ContextElement> getPreviousSiblingElements()
Get the list of previous sibling elements of the element the Context was built for.

Returns:
The list of previous sibling ContextElement, or null if no previous siblings exist for the current element.

executeXPath

public List<String> executeXPath(String expression,
                                 String[] prefixNamespaceMappings)
Executes an XPath expression over the entire document.

Parameters:
expression - The XPath expression to be executed.
prefixNamespaceMappings - An array of prefixes followed by namespace URI's representing the namespace mappings to the point of the Context.
Returns:
A list of strings representing the XPath results, never null.

setXMLReader

public void setXMLReader(XMLReader xmlReader)
Set the XMLReader used for creating a SAX source. The content completion proposals for XSD and XSL documents are obtained by running XPath queries on this SAX source.

Parameters:
xmlReader - The new XMLReader.

pushContextElement

public void pushContextElement(ContextElement element,
                               List<ContextElement> previousSiblingElements)
Updates the context by adding the given element in the context. The new context can be used to get what elements can be added in the given element after the given previous children.

Parameters:
element - Context element to be added.
previousSiblingElements - Previous siblings for the new insert position. They are children of the given element and the insertion position is after them.

clone

public Object clone()
Overrides:
clone in class Object
See Also:
Object.clone()

Oxygen XML Editor 11.2 Author API

© Copyright SyncRO Soft SRL 2002 - 2010.