1 11 package org.eclipse.jdi.internal; 12 13 14 import com.sun.jdi.LongType; 15 import com.sun.jdi.Value; 16 17 23 public class LongTypeImpl extends PrimitiveTypeImpl implements LongType { 24 27 public LongTypeImpl(VirtualMachineImpl vmImpl) { 28 super("LongType", vmImpl, "long" , "J"); } 30 31 34 public byte tag() { 35 return LongValueImpl.tag; 36 } 37 38 41 public Value createNullValue() { 42 return virtualMachineImpl().mirrorOf(0L); 43 } 44 } 45 | Popular Tags |