Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java38
1 files changed, 23 insertions, 15 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java
index 1391a9bc6..4f603de69 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/ByteValueImpl.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -10,7 +10,6 @@
*******************************************************************************/
package org.eclipse.jdi.internal;
-
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
@@ -21,10 +20,9 @@ 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.
- *
+ * 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. */
@@ -32,6 +30,8 @@ public class ByteValueImpl extends PrimitiveValueImpl implements ByteValue {
/**
* Creates new instance.
+ * @param vmImpl the VM
+ * @param value the underlying byte value
*/
public ByteValueImpl(VirtualMachineImpl vmImpl, Byte value) {
super("ByteValue", vmImpl, value); //$NON-NLS-1$
@@ -40,37 +40,45 @@ public class ByteValueImpl extends PrimitiveValueImpl implements ByteValue {
/**
* @returns tag.
*/
+ @Override
public byte getTag() {
return tag;
}
-
+
/**
* @returns type of value.
- */
+ */
+ @Override
public Type type() {
return virtualMachineImpl().getByteType();
}
-
+
/**
- * @returns Value.
+ * @return the underlying byte value
*/
public byte value() {
return byteValue();
}
-
+
/**
+ * @param target the target
+ * @param in the stream
* @return Reads and returns new instance.
+ * @throws IOException if the read fails
*/
- public static ByteValueImpl read(MirrorImpl target, DataInputStream in) throws IOException {
+ 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$
+ @Override
+ public void write(MirrorImpl target, DataOutputStream out)
+ throws IOException {
+ target.writeByte(((Byte) fValue).byteValue(), "byteValue", out); //$NON-NLS-1$
}
}

Back to the top