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 protected
UnaryOperationNode(com.sun.source.tree.UnaryTree tree, Node operand)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Node
getOperand()
java.util.Collection<Node>
getOperands()
com.sun.source.tree.UnaryTree
getTree()
Returns theTree
in the abstract syntax tree, ornull
if 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:Node
Returns theTree
in the abstract syntax tree, ornull
if 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:
getOperands
in classNode
- Returns:
- a collection containing all of the operand
Node
s of thisNode
-
-