Class UnaryOperationNode
- java.lang.Object
-
- org.checkerframework.dataflow.cfg.node.Node
-
- org.checkerframework.dataflow.cfg.node.UnaryOperationNode
-
- All Implemented Interfaces:
org.plumelib.util.UniqueId
- Direct Known Subclasses:
BitwiseComplementNode,ConditionalNotNode,NumericalMinusNode,NumericalPlusNode
public abstract class UnaryOperationNode extends Node
A node for a postfix or an unary expression.For example:
operator expressionNode expressionNode operator
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedUnaryOperationNode(com.sun.source.tree.UnaryTree tree, Node operand)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodegetOperand()java.util.Collection<Node>getOperands()com.sun.source.tree.UnaryTreegetTree()Returns theTreein the abstract syntax tree, ornullif no corresponding tree exists.-
Methods inherited from class org.checkerframework.dataflow.cfg.node.Node
accept, getBlock, getInSource, getTransitiveOperands, getType, getUid, isLValue, nodeCollectionToString, setBlock, setInSource, setLValue, toStringDebug
-
-
-
-
Field Detail
-
tree
protected final com.sun.source.tree.UnaryTree tree
-
operand
protected final Node operand
-
-
Constructor Detail
-
UnaryOperationNode
protected UnaryOperationNode(com.sun.source.tree.UnaryTree tree, Node operand)
-
-
Method Detail
-
getOperand
public Node getOperand()
-
getTree
public com.sun.source.tree.UnaryTree getTree()
Description copied from class:NodeReturns theTreein the abstract syntax tree, ornullif no corresponding tree exists. For instance, this is the case for anImplicitThisNode.
-
getOperands
@SideEffectFree public java.util.Collection<Node> getOperands()
Description copied from class:Node- Specified by:
getOperandsin classNode- Returns:
- a collection containing all of the operand
Nodes of thisNode
-
-