* Removed all Id tags.
[cacao.git] / tests / regression / native / checkjni.java
1 /* src/tests/native/checkjni.java - for testing JNI related stuff
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Christian Thalinger
28
29    Changes:
30
31 */
32
33
34 public class checkjni {
35     public native boolean IsAssignableFrom(Class sub, Class sup);
36     public native boolean IsInstanceOf(Object obj, Class clazz);
37     public native int     PushLocalFrame(int capacity);
38
39     public static void main(String[] argv) {
40         System.loadLibrary("checkjni");
41
42         new checkjni();
43     }
44
45     public checkjni() {
46         checkIsAssignableFrom();
47         checkIsInstanceOf();
48         checkPushLocalFrame();
49     }
50
51     void checkIsAssignableFrom() {
52         p("IsAssignableFrom:");
53
54         Class sub = Integer.class;
55         Class sup = Object.class;
56
57         equal(IsAssignableFrom(sup, sup), true);
58         equal(IsAssignableFrom(sub, sup), true);
59         equal(IsAssignableFrom(sup, sub), false);
60     }
61
62     void checkIsInstanceOf() {
63         p("IsInstanceOf:");
64
65         Object obj = new Object();
66         Object obj2 = new Integer(1);
67         Class clazz = Object.class;
68         Class clazz2 = Integer.class;
69
70         equal(IsInstanceOf(obj, clazz), true);
71         equal(IsInstanceOf(obj2, clazz), true);
72         equal(IsInstanceOf(obj, clazz2), false);
73     }
74
75     void checkPushLocalFrame() {
76         p("PushLocalFrame:");
77
78         equal(PushLocalFrame(100), 0);
79     }
80
81     void equal(boolean a, boolean b) {
82         if (a == b)
83             p("PASS");
84         else
85             p("FAILED");
86     }
87
88     void equal(int a, int b) {
89         if (a == b)
90             p("PASS");
91         else
92             p("FAILED");
93     }
94
95     void p(String s) {
96         System.out.println(s);
97     }
98 }