VMFrame.java: Update to Classpath 0.91.

* 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.

From-SVN: r115934
This commit is contained in:
Keith Seitz
2006-08-04 20:34:02 +00:00
committed by Keith Seitz
parent cc011e7f12
commit 27d8ff9b83
10 changed files with 419 additions and 51 deletions
+2 -2
View File
@@ -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,