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