soot.jimple
Interface IfStmt

All Superinterfaces:
Context, Host, Serializable, Stmt, Switchable, Unit
All Known Implementing Classes:
GIfStmt, JIfStmt

public interface IfStmt
extends Stmt


Method Summary
 Value getCondition()
           
 ValueBox getConditionBox()
           
 Stmt getTarget()
           
 UnitBox getTargetBox()
           
 void setCondition(Value condition)
          condition must be soot.jimple.ConditionExpr
 void setTarget(Unit target)
           
 
Methods inherited from interface soot.jimple.Stmt
containsArrayRef, containsFieldRef, containsInvokeExpr, getArrayRef, getArrayRefBox, getFieldRef, getFieldRefBox, getInvokeExpr, getInvokeExprBox, toString
 
Methods inherited from interface soot.Unit
addBoxPointingToThis, branches, clearUnitBoxes, clone, fallsThrough, getBoxesPointingToThis, getDefBoxes, getUnitBoxes, getUseAndDefBoxes, getUseBoxes, redirectJumpsToThisTo, removeBoxPointingToThis
 
Methods inherited from interface soot.util.Switchable
apply
 
Methods inherited from interface soot.tagkit.Host
addAllTagsOf, addTag, getTag, getTags, hasTag, removeAllTags, removeTag
 

Method Detail

getCondition

Value getCondition()

setCondition

void setCondition(Value condition)
condition must be soot.jimple.ConditionExpr


getConditionBox

ValueBox getConditionBox()

getTarget

Stmt getTarget()

setTarget

void setTarget(Unit target)

getTargetBox

UnitBox getTargetBox()