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