1 26 27 package net.sourceforge.groboutils.codecoverage.v2; 28 29 import org.apache.bcel.classfile.LineNumberTable; 30 import org.apache.bcel.classfile.Method; 31 import org.apache.bcel.generic.Instruction; 32 33 34 42 public interface IMethodCode 43 { 44 49 public Method getOriginalMethod(); 50 51 52 58 public LineNumberTable getLineNumberTable(); 59 60 61 66 public String getMethodName(); 67 68 69 74 public String getClassName(); 75 76 77 82 public int getInstructionCount(); 83 84 85 93 public Instruction getInstructionAt( int index ); 94 95 96 108 public void markInstruction( int index, IAnalysisMetaData meta ); 109 } 110 111 | Popular Tags |