1 19 20 25 26 package soot.baf; 27 28 import soot.util.*; 29 import java.util.*; 30 import soot.*; 31 32 public interface LookupSwitchInst extends Inst 33 { 34 public Unit getDefaultTarget(); 35 public void setDefaultTarget(Unit defTarget); 36 public UnitBox getDefaultTargetBox(); 37 38 public void setLookupValue(int index, int value); 39 public int getLookupValue(int index); 40 public List getLookupValues(); 41 public void setLookupValues(List values); 42 43 public int getTargetCount(); 44 public Unit getTarget(int index); 45 public UnitBox getTargetBox(int index); 46 public void setTarget(int index, Unit target); 47 public List getTargets(); 48 public void setTargets(List targets); 49 } 50 | Popular Tags |