1 18 19 package alt.jiapi.instrumentor; 20 21 import alt.jiapi.reflect.InstructionList; 22 23 30 public class Instrumentation { 31 private String targetName; 32 private InstructionList targetCode; 34 35 39 public String getTargetName() { 40 return this.targetName; 41 } 42 43 47 public void setTargetName(String targetName) { 48 this.targetName = targetName; 49 } 50 51 52 public void setTargetCode(InstructionList il) { 53 this.targetCode = il; 54 } 55 public InstructionList getTargetCode() { 56 return targetCode; 57 } 58 59 65 } 66 | Popular Tags |