1 30 31 44 45 package jbet; 46 import java.io.*; 47 48 class CpNameAndType extends CpEntry { 49 int nameIndex = -1; int typeIndex = -1; 53 Object _type; String n; 56 57 59 60 64 CpNameAndType (int i, CPInterface cp) { 65 super(i, CPInterface.CONSTANT_NameAndType, cp); 66 } 67 68 72 CpNameAndType (CPInterface cp, String name, Object type) { 73 super(cp.poolCount(), CPInterface.CONSTANT_NameAndType, cp); 74 n = name; 75 _type = type; 76 } 77 78 public String toString() { 79 return n + " " + _type; 80 } 81 82 boolean isMethod() { return _type instanceof Descriptor; } 83 boolean isField() { return _type instanceof Type; } 84 85 86 String name() { return n; } 87 Descriptor descriptor() { return (Descriptor) _type; } ; 88 Type type() { return (Type) _type; }; 89 90 void setup() throws ClassFileException { 91 if (n == null || _type == null) { 92 CpUtf8 cp = constantPool.cpUtf8At(nameIndex); 93 n = cp.string; 94 cp = constantPool.cpUtf8At(typeIndex); 95 if (cp.string.startsWith("(")) 96 _type = new Descriptor ( cp.string ); 97 else 98 _type = new Type ( cp.string ); 99 } 100 } 101 102 103 public int hashCode() { 104 return n.hashCode() + _type.hashCode(); 105 } 106 107 public boolean equals(Object o) { 108 if (!(o instanceof CpNameAndType)) return false; 109 CpNameAndType cp = (CpNameAndType) o; 110 return cp.n.equals(n) && cp._type.equals(_type); 111 } 112 113 114 void write(DataOutputStream dataOut) throws IOException { 115 dataOut.writeByte(tag); 116 dataOut.writeShort(nameIndex); 117 dataOut.writeShort(typeIndex); 118 } 119 120 } 121 122
| Popular Tags
|