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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user