Class JIfStmt

java.lang.Object
sootup.core.jimple.common.stmt.AbstractStmt
sootup.core.jimple.common.stmt.JIfStmt
All Implemented Interfaces:
EquivTo, BranchingStmt, FallsThroughStmt, Stmt, Acceptor<StmtVisitor>

public final class JIfStmt extends AbstractStmt implements BranchingStmt, FallsThroughStmt
If the condition is true, jumps to the target, otherwise continues to the next stmt. The first successor (index=0) is the fallsthrough Stmt and the second successor (index=1) is the rbanching one.