1 21 22 package org.netbeans.modules.classfile; 23 24 32 public final class PrimitiveElementValue extends ElementValue { 33 CPEntry value; 34 35 PrimitiveElementValue(ConstantPool pool, int iValue) { 36 this.value = pool.get(iValue); 37 } 38 39 42 public final CPEntry getValue() { 43 return value; 44 } 45 46 public String toString() { 47 return "const=" + value.getValue(); 48 } 49 } 50 | Popular Tags |