diff options
Diffstat (limited to 'libjava/gnu/gcj/runtime/MethodRef.java')
-rw-r--r-- | libjava/gnu/gcj/runtime/MethodRef.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libjava/gnu/gcj/runtime/MethodRef.java b/libjava/gnu/gcj/runtime/MethodRef.java new file mode 100644 index 0000000..f157461 --- /dev/null +++ b/libjava/gnu/gcj/runtime/MethodRef.java @@ -0,0 +1,25 @@ +// gnu.gcj.runtime.MethodRef -- used by StackTrace. + +/* Copyright (C) 2002 Free Software Foundation + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +package gnu.gcj.runtime; + +import gnu.gcj.RawData; + +class MethodRef +{ + MethodRef(RawData /* Actually _Jv_Method */ m, Class k) + { + klass = k; + method = m; + } + + public RawData method; // Actually a raw pointer to _Jv_Method + public Class klass; +} |