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