org.openrdf.query.algebra
Class QueryModelNodeBase

java.lang.Object
  extended by org.openrdf.query.algebra.QueryModelNodeBase
All Implemented Interfaces:
Cloneable, QueryModelNode
Direct Known Subclasses:
BinaryTupleOperator, BinaryValueOperator, BNodeGenerator, Bound, EmptySet, ExtensionElem, FunctionCall, GroupElem, OrderElem, ProjectionElem, ProjectionElemList, RdbmsQueryModelNodeBase, SingletonSet, StatementPattern, SubQueryValueOperator, UnaryTupleOperator, UnaryValueOperator, ValueConstant, Var

public abstract class QueryModelNodeBase
extends Object
implements QueryModelNode

Base implementation of QueryModelNode.


Constructor Summary
QueryModelNodeBase()
           
 
Method Summary
 QueryModelNodeBase clone()
          Returns a (deep) clone of this query model node.
 QueryModelNode getParentNode()
          Gets the node's parent.
 String getSignature()
          Default implementation of QueryModelNode.getSignature() that prints the name of the node's class.
 void replaceChildNode(QueryModelNode current, QueryModelNode replacement)
          Default implementation of QueryModelNode.replaceChildNode(QueryModelNode, QueryModelNode) that throws an IllegalArgumentException indicating that current is not a child node of this node.
 void replaceWith(QueryModelNode replacement)
          Default implementation of QueryModelNode.replaceChildNode(QueryModelNode, QueryModelNode) that throws an IllegalArgumentException indicating that current is not a child node of this node.
 void setParentNode(QueryModelNode parent)
          Sets the node's parent.
 String toString()
          Returns an indented print of the node tree, starting from this node.
<X extends Exception>
void
visitChildren(QueryModelVisitor<X> visitor)
          Dummy implementation of QueryModelNode.visitChildren(org.openrdf.query.algebra.QueryModelVisitor) that does nothing.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.openrdf.query.algebra.QueryModelNode
visit
 

Constructor Detail

QueryModelNodeBase

public QueryModelNodeBase()
Method Detail

getParentNode

public QueryModelNode getParentNode()
Description copied from interface: QueryModelNode
Gets the node's parent.

Specified by:
getParentNode in interface QueryModelNode
Returns:
The parent node, if any.

setParentNode

public void setParentNode(QueryModelNode parent)
Description copied from interface: QueryModelNode
Sets the node's parent.

Specified by:
setParentNode in interface QueryModelNode
Parameters:
parent - The parent node for this node.

visitChildren

public <X extends Exception> void visitChildren(QueryModelVisitor<X> visitor)
                   throws X extends Exception
Dummy implementation of QueryModelNode.visitChildren(org.openrdf.query.algebra.QueryModelVisitor) that does nothing. Subclasses should override this method when they have child nodes.

Specified by:
visitChildren in interface QueryModelNode
Throws:
X extends Exception

replaceChildNode

public void replaceChildNode(QueryModelNode current,
                             QueryModelNode replacement)
Default implementation of QueryModelNode.replaceChildNode(QueryModelNode, QueryModelNode) that throws an IllegalArgumentException indicating that current is not a child node of this node.

Specified by:
replaceChildNode in interface QueryModelNode
Parameters:
current - The current child node.
replacement - The new child node.

replaceWith

public void replaceWith(QueryModelNode replacement)
Default implementation of QueryModelNode.replaceChildNode(QueryModelNode, QueryModelNode) that throws an IllegalArgumentException indicating that current is not a child node of this node.

Specified by:
replaceWith in interface QueryModelNode
Parameters:
replacement - The new node.

getSignature

public String getSignature()
Default implementation of QueryModelNode.getSignature() that prints the name of the node's class.

Specified by:
getSignature in interface QueryModelNode
Returns:
The node's signature, e.g. SLICE (offset=10, limit=10).

toString

public String toString()
Description copied from interface: QueryModelNode
Returns an indented print of the node tree, starting from this node.

Specified by:
toString in interface QueryModelNode
Overrides:
toString in class Object

clone

public QueryModelNodeBase clone()
Description copied from interface: QueryModelNode
Returns a (deep) clone of this query model node. This method recursively clones the entire node tree, starting from this nodes.

Specified by:
clone in interface QueryModelNode
Overrides:
clone in class Object
Returns:
A deep clone of this query model node.


Copyright © 2001-2008 Aduna. All Rights Reserved.