1 19 20 25 26 27 28 29 30 31 package soot.jimple.internal; 32 33 import soot.*; 34 import soot.jimple.*; 35 import soot.util.*; 36 import java.util.*; 37 38 public class JBreakpointStmt extends AbstractStmt implements BreakpointStmt 39 { 40 public JBreakpointStmt() 41 { 42 } 43 44 public String toString() 45 { 46 return Jimple.v().BREAKPOINT; 47 } 48 49 public void toString(UnitPrinter up) { 50 up.literal(Jimple.v().BREAKPOINT); 51 } 52 53 public void apply(Switch sw) 54 { 55 ((StmtSwitch) sw).caseBreakpointStmt(this); 56 } 57 58 public Object clone() 59 { 60 return new JBreakpointStmt(); 61 } 62 63 public boolean fallsThrough(){return true;} 64 public boolean branches(){return false;} 65 66 } 67 | Popular Tags |