mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
17 lines
272 B
Java
17 lines
272 B
Java
|
|
// Test FindClass part of JNI.
|
||
|
|
|
||
|
|
public class findclass
|
||
|
|
{
|
||
|
|
static
|
||
|
|
{
|
||
|
|
System.loadLibrary ("findclass");
|
||
|
|
}
|
||
|
|
|
||
|
|
public static native Class doit (String name);
|
||
|
|
|
||
|
|
public static void main (String[] args)
|
||
|
|
{
|
||
|
|
System.out.println ("" + doit ("java/lang/String"));
|
||
|
|
}
|
||
|
|
}
|