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