1 25 26 package org.netbeans.modules.classfile; 27 28 29 34 public final class CPLongInfo extends CPEntry { 35 36 CPLongInfo(ConstantPool pool, long v) { 37 super(pool); 38 value = new Long (v); 39 } 40 41 44 boolean usesTwoSlots() { 45 return true; 46 } 47 48 public final int getTag() { 49 return ConstantPool.CONSTANT_Long; 50 } 51 52 public String toString() { 53 return getClass().getName() + ": value=" + value; } 55 } 56 | Popular Tags |