summaryrefslogtreecommitdiff
path: root/vm/reference/gnu/classpath/jdwp/VMFrame.java
diff options
context:
space:
mode:
Diffstat (limited to 'vm/reference/gnu/classpath/jdwp/VMFrame.java')
-rw-r--r--vm/reference/gnu/classpath/jdwp/VMFrame.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/vm/reference/gnu/classpath/jdwp/VMFrame.java b/vm/reference/gnu/classpath/jdwp/VMFrame.java
index 3b0b031c2..eec7b63d6 100644
--- a/vm/reference/gnu/classpath/jdwp/VMFrame.java
+++ b/vm/reference/gnu/classpath/jdwp/VMFrame.java
@@ -40,6 +40,7 @@ exception statement from your version. */
package gnu.classpath.jdwp;
import gnu.classpath.jdwp.util.Location;
+import gnu.classpath.jdwp.value.Value;
/**
* Reference implementation of VM hooks for JDWP Frame access.
@@ -93,14 +94,14 @@ public class VMFrame
*
* @param slot the slot containing the variable
*/
- public native Object getValue(int slot, byte sig);
+ public native Value getValue(int slot, byte sig);
/**
* Assigns the given variable to the given value.
* @param slot The slot which contains the variable
* @param value The value to assign the variable to
*/
- public native void setValue(int slot, Object value);
+ public native void setValue(int slot, Value value);
/**
* Get the thread this frame is in.