soot.jimple
Interface UnopExpr

All Superinterfaces:
EquivTo, Expr, Switchable, ToBriefString, Value
All Known Subinterfaces:
LengthExpr, NegExpr
All Known Implementing Classes:
AbstractUnopExpr

public interface UnopExpr
extends Expr, ToBriefString


Method Summary
 Value getOp()
           
 ValueBox getOpBox()
           
 java.util.List getUseBoxes()
          Returns a List of boxes corresponding to Values which are used by (ie contained within) this Value.
 void setOp(Value op)
           
 
Methods inherited from interface soot.Value
clone, getType
 
Methods inherited from interface soot.util.Switchable
apply
 
Methods inherited from interface soot.EquivTo
equivHashCode, equivTo
 
Methods inherited from interface soot.ToBriefString
toBriefString
 

Method Detail

getOp

public Value getOp()

setOp

public void setOp(Value op)

getOpBox

public ValueBox getOpBox()

getUseBoxes

public java.util.List getUseBoxes()
Description copied from interface: Value
Returns a List of boxes corresponding to Values which are used by (ie contained within) this Value.
Specified by:
getUseBoxes in interface Value