1 25 26 package org.netbeans.modules.classfile; 27 28 29 34 public final class CPIntegerInfo extends CPEntry { 35 36 CPIntegerInfo(ConstantPool pool, int v) { 37 super(pool); 38 value = new Integer (v); 39 } 40 41 public final int getTag() { 42 return ConstantPool.CONSTANT_Integer; 43 } 44 45 public String toString() { 46 return getClass().getName() + ": value=" + value; } 48 } 49 | Popular Tags |