blob: 9d5b4f12c83cb0dbeebc8b667dc72938a4fbc830 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdi.internal;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import org.eclipse.jdi.internal.jdwp.JdwpID;
import com.sun.jdi.ByteValue;
import com.sun.jdi.Type;
/**
* this class implements the corresponding interfaces
* declared by the JDI specification. See the com.sun.jdi package
* for more information.
*
*/
public class ByteValueImpl extends PrimitiveValueImpl implements ByteValue {
/** JDWP Tag. */
public static final byte tag = JdwpID.BYTE_TAG;
/**
* Creates new instance.
*/
public ByteValueImpl(VirtualMachineImpl vmImpl, Byte value) {
super("ByteValue", vmImpl, value); //$NON-NLS-1$
}
/**
* @returns tag.
*/
public byte getTag() {
return tag;
}
/**
* @returns type of value.
*/
public Type type() {
return virtualMachineImpl().getByteType();
}
/**
* @returns Value.
*/
public byte value() {
return byteValue();
}
/**
* @return Reads and returns new instance.
*/
public static ByteValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
VirtualMachineImpl vmImpl = target.virtualMachineImpl();
byte value = target.readByte("byteValue", in); //$NON-NLS-1$
return new ByteValueImpl(vmImpl, new Byte(value));
}
/**
* Writes value without value tag.
*/
public void write(MirrorImpl target, DataOutputStream out) throws IOException {
target.writeByte(((Byte)fValue).byteValue(), "byteValue", out); //$NON-NLS-1$
}
}