repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.jni
/
findclass.java
blob
b857538e6634b88b37fa2e497613cd063e7e985c
1
// Test FindClass part of JNI.
2
3
public class
findclass
4
{
5
static
6
{
7
System
.
loadLibrary
(
"findclass"
);
8
}
9
10
public static native
Class
doit
(
String name
);
11
12
public static void
main
(
String
[]
args
)
13
{
14
System
.
out
.
println
(
""
+
doit
(
"java/lang/String"
));
15
}
16
}