1 30 31 package oracle.toplink.libraries.asm.attrs; 32 33 import oracle.toplink.libraries.asm.Label; 34 35 36 41 public class LocalVariableType { 42 43 public int index; 44 public String name; 45 public String signature; 46 public Label start; 47 public Label end; 48 49 public int getIndex() { 50 return index; 51 } 52 53 public String getName() { 54 return name; 55 } 56 57 public String getSignature() { 58 return signature; 59 } 60 61 public Label getStart() { 62 return start; 63 } 64 65 public Label getEnd() { 66 return end; 67 } 68 69 public String toString() { 70 StringBuffer sb = new StringBuffer ( index).append( " : ") 71 .append( name).append( " ").append( signature) 72 .append( "[L").append( System.identityHashCode(start)) 73 .append( " - L").append( System.identityHashCode(end)).append( "]"); 74 return sb.toString(); 75 } 76 77 } 78 79 | Popular Tags |