1 11 package org.eclipse.jdi.internal; 12 13 14 import java.io.DataInputStream ; 15 import java.io.DataOutputStream ; 16 import java.io.IOException ; 17 18 import org.eclipse.jdi.internal.jdwp.JdwpID; 19 20 import com.sun.jdi.ByteValue; 21 import com.sun.jdi.Type; 22 23 29 public class ByteValueImpl extends PrimitiveValueImpl implements ByteValue { 30 31 public static final byte tag = JdwpID.BYTE_TAG; 32 33 36 public ByteValueImpl(VirtualMachineImpl vmImpl, Byte value) { 37 super("ByteValue", vmImpl, value); } 39 40 43 public byte getTag() { 44 return tag; 45 } 46 47 50 public Type type() { 51 return virtualMachineImpl().getByteType(); 52 } 53 54 57 public byte value() { 58 return byteValue(); 59 } 60 61 64 public static ByteValueImpl read(MirrorImpl target, DataInputStream in) throws IOException { 65 VirtualMachineImpl vmImpl = target.virtualMachineImpl(); 66 byte value = target.readByte("byteValue", in); return new ByteValueImpl(vmImpl, new Byte (value)); 68 } 69 70 73 public void write(MirrorImpl target, DataOutputStream out) throws IOException { 74 target.writeByte(((Byte )fValue).byteValue(), "byteValue", out); } 76 } 77 | Popular Tags |