1 25 26 package org.netbeans.modules.classfile; 27 28 29 34 public abstract class CPEntry { 35 36 ConstantPool pool; 37 Object value; 38 39 CPEntry(ConstantPool pool) { 40 this.pool = pool; 41 } 42 43 void resolve(CPEntry[] pool) { 44 } 46 47 50 boolean usesTwoSlots() { 51 return false; 52 } 53 54 public Object getValue() { 55 return value; 56 } 57 58 62 public abstract int getTag(); 63 } 64 65 | Popular Tags |