Translation
[cacao.git] / nat / SecurityManager.c
1 /* class: java/lang/SecurityManager */
2
3 /*
4  * Class:     java/lang/SecurityManager
5  * Method:    classDepth
6  * Signature: (Ljava/lang/String;)I
7  */
8 JNIEXPORT s4 JNICALL Java_java_lang_SecurityManager_classDepth ( JNIEnv *env ,  struct java_lang_SecurityManager* this, struct java_lang_String* par1)
9 {
10   log_text("Java_java_lang_SecurityManager_classDepth  called");
11   return 0;
12 }
13
14 /*
15  * Class:     java/lang/SecurityManager
16  * Method:    classLoaderDepth0
17  * Signature: ()I
18  */
19 JNIEXPORT s4 JNICALL Java_java_lang_SecurityManager_classLoaderDepth0 ( JNIEnv *env ,  struct java_lang_SecurityManager* this)
20 {
21   log_text("Java_java_lang_SecurityManager_classLoaderDepth0  called");
22   return 0;
23 }
24
25 /*
26  * Class:     java/lang/SecurityManager
27  * Method:    currentClassLoader0
28  * Signature: ()Ljava/lang/ClassLoader;
29  */
30 JNIEXPORT struct java_lang_ClassLoader* JNICALL Java_java_lang_SecurityManager_currentClassLoader0 ( JNIEnv *env ,  struct java_lang_SecurityManager* this)
31 {
32   init_systemclassloader();
33   return SystemClassLoader;
34 }
35
36 /*
37  * Class:     java/lang/SecurityManager
38  * Method:    currentLoadedClass0
39  * Signature: ()Ljava/lang/Class;
40  */
41 JNIEXPORT struct java_lang_Class* JNICALL Java_java_lang_SecurityManager_currentLoadedClass0 ( JNIEnv *env ,  struct java_lang_SecurityManager* this)
42 {
43     log_text("Java_java_lang_SecurityManager_currentLoadedClass0 called");
44     return NULL;
45 }
46
47 /*
48  * Class:     java/lang/SecurityManager
49  * Method:    getClassContext
50  * Signature: ()[Ljava/lang/Class;
51  */
52 JNIEXPORT java_objectarray* JNICALL Java_java_lang_SecurityManager_getClassContext ( JNIEnv *env ,  struct java_lang_SecurityManager* this)
53 {
54   log_text("Java_java_lang_SecurityManager_getClassContext  called");
55   return NULL;
56 }