diff options
| author | kseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-08-04 20:34:02 +0000 |
|---|---|---|
| committer | kseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-08-04 20:34:02 +0000 |
| commit | ca28fc3706f66429e3644200f8553bcea558c29a (patch) | |
| tree | 6eb4caac232c45b7f3bfb8d655d8ded27ab7c1f5 /libjava/gnu/classpath/jdwp/VMFrame.java | |
| parent | bbc8f5d08343ce661acbdf25cd6556d43fb3a385 (diff) | |
| download | ppe42-gcc-ca28fc3706f66429e3644200f8553bcea558c29a.tar.gz ppe42-gcc-ca28fc3706f66429e3644200f8553bcea558c29a.zip | |
* gnu/classpath/jdwp/VMFrame.java: Update to Classpath 0.91.
* gnu/classpath/jdwp/VMIdManager.java: Likewise.
* gnu/classpath/jdwp/VMMethod.java: Likewise.
* gnu/classpath/jdwp/VMVirtualMachine: Likewise.
* gnu/classpath/jdwp/natVMFrame.java: New file.
* gnu/classpath/jdwp/natVMMethod.java: New file.
* gnu/classpath/jdwp/natVMVirtualMachine.java: New file.
* Makefile.am (nat_source_files): Add new filles.
* Makefile.in: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115934 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/gnu/classpath/jdwp/VMFrame.java')
| -rw-r--r-- | libjava/gnu/classpath/jdwp/VMFrame.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/gnu/classpath/jdwp/VMFrame.java b/libjava/gnu/classpath/jdwp/VMFrame.java index 840ca09e884..cd213025a72 100644 --- a/libjava/gnu/classpath/jdwp/VMFrame.java +++ b/libjava/gnu/classpath/jdwp/VMFrame.java @@ -76,14 +76,14 @@ public class VMFrame * * @param slot the slot containing the variable */ - public Object getValue(int slot) { return null; } + public native Object getValue(int slot); /** * 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 void setValue(int slot, Object value) { } + public native void setValue(int slot, Object value); /** * Get the object which is represented by 'this' in the context of the frame, |

