summaryrefslogtreecommitdiff
path: root/libjava/gnu/classpath/jdwp/VMMethod.java
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2006-08-04 20:34:02 +0000
committerKeith Seitz <kseitz@gcc.gnu.org>2006-08-04 20:34:02 +0000
commit27d8ff9b8349ec64ebeeb7ccc6c4516580bf3a81 (patch)
tree6eb4caac232c45b7f3bfb8d655d8ded27ab7c1f5 /libjava/gnu/classpath/jdwp/VMMethod.java
parentcc011e7f12afb47a0487e9645bc125681b8b136f (diff)
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
Diffstat (limited to 'libjava/gnu/classpath/jdwp/VMMethod.java')
-rw-r--r--libjava/gnu/classpath/jdwp/VMMethod.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/gnu/classpath/jdwp/VMMethod.java b/libjava/gnu/classpath/jdwp/VMMethod.java
index a4bbb51ecf6..d345bc1b515 100644
--- a/libjava/gnu/classpath/jdwp/VMMethod.java
+++ b/libjava/gnu/classpath/jdwp/VMMethod.java
@@ -103,17 +103,17 @@ public class VMMethod
/**
* Returns the name of this method
*/
- public String getName() { return null; }
+ public native String getName();
/**
* Returns the signature of this method
*/
- public String getSignature() { return null; }
+ public native String getSignature();
/**
* Returns the method's modifier flags
*/
- public int getModifiers() { return -1; }
+ public native int getModifiers();
/**
* "Returns line number information for the method, if present. The line
@@ -125,8 +125,8 @@ public class VMMethod
* @return the line table
* @throws JdwpException
*/
- public LineTable getLineTable()
- { return null; }
+ public native LineTable getLineTable()
+ throws JdwpException;
/**
* "Returns variable information for the method. The variable table
@@ -137,8 +137,8 @@ public class VMMethod
* @return the variable table
* @throws JdwpException
*/
- public VariableTable getVariableTable()
- { return null; }
+ public native VariableTable getVariableTable()
+ throws JdwpException;
/**
* Returns a string representation of this method (not