1 19 20 25 26 27 28 29 30 package soot.jimple; 31 32 import soot.*; 33 import soot.util.*; 34 import java.util.*; 35 36 public interface TableSwitchStmt extends Stmt 37 { 38 public Unit getDefaultTarget(); 39 public void setDefaultTarget(Unit defaultTarget); 40 public UnitBox getDefaultTargetBox(); 41 public Value getKey(); 42 public void setKey(Value key); 43 public ValueBox getKeyBox(); 44 public void setLowIndex(int lowIndex); 45 public void setHighIndex(int highIndex); 46 public int getLowIndex(); 47 public int getHighIndex(); 48 public List getTargets(); 49 public Unit getTarget(int index); 50 public void setTarget(int index, Unit target); 51 public void setTargets(List targets); 52 public UnitBox getTargetBox(int index); 53 } 54 55 56 | Popular Tags |