|
Last change
on this file since 1755 was 1389, checked in by bird, 22 years ago |
|
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
533 bytes
|
| Line | |
|---|
| 1 | // gnu.gcj.runtime.MethodRef -- used by StackTrace.
|
|---|
| 2 |
|
|---|
| 3 | /* Copyright (C) 2002 Free Software Foundation
|
|---|
| 4 |
|
|---|
| 5 | This file is part of libgcj.
|
|---|
| 6 |
|
|---|
| 7 | This software is copyrighted work licensed under the terms of the
|
|---|
| 8 | Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|---|
| 9 | details. */
|
|---|
| 10 |
|
|---|
| 11 | package gnu.gcj.runtime;
|
|---|
| 12 |
|
|---|
| 13 | import gnu.gcj.RawData;
|
|---|
| 14 |
|
|---|
| 15 | class MethodRef
|
|---|
| 16 | {
|
|---|
| 17 | MethodRef(RawData /* Actually _Jv_Method */ m, Class k)
|
|---|
| 18 | {
|
|---|
| 19 | klass = k;
|
|---|
| 20 | method = m;
|
|---|
| 21 | }
|
|---|
| 22 |
|
|---|
| 23 | public RawData method; // Actually a raw pointer to _Jv_Method
|
|---|
| 24 | public Class klass;
|
|---|
| 25 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.