* Removed all Id tags.
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Class.c
1 /* src/native/vm/cldc1.1/java_lang_Class.c
2
3    Copyright (C) 2006, 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - 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 */
26
27
28 #include "config.h"
29 #include "vm/types.h"
30
31 #include "native/jni.h"
32 #include "native/llni.h"
33 #include "native/native.h"
34
35 #include "native/include/java_lang_String.h"             /* required by j.l.C */
36 #include "native/include/java_lang_Object.h"
37
38 #include "native/include/java_lang_Class.h"
39
40 #include "native/vm/java_lang_Class.h"
41
42
43 /* native methods implemented by this file ************************************/
44  
45 static JNINativeMethod methods[] = {
46         { "forName",          "(Ljava/lang/String;)Ljava/lang/Class;",(void *) (ptrint) &Java_java_lang_Class_forName          },
47         { "newInstance",      "()Ljava/lang/Object;",                 (void *) (ptrint) &Java_java_lang_Class_newInstance      },
48         { "isInstance",       "(Ljava/lang/Object;)Z",                (void *) (ptrint) &Java_java_lang_Class_isInstance       },
49         { "isAssignableFrom", "(Ljava/lang/Class;)Z",                 (void *) (ptrint) &Java_java_lang_Class_isAssignableFrom },
50         { "isInterface",      "()Z",                                  (void *) (ptrint) &_Jv_java_lang_Class_isInterface       },
51         { "isArray",          "()Z",                                  (void *) (ptrint) &_Jv_java_lang_Class_isArray           },
52         { "getName",          "()Ljava/lang/String;",                 (void *) (ptrint) &Java_java_lang_Class_getName          },
53 };
54
55 /* _Jv_java_lang_Class_init ****************************************************
56  
57    Register native functions.
58  
59 *******************************************************************************/
60  
61 void _Jv_java_lang_Class_init(void)
62 {
63         utf *u;
64  
65         u = utf_new_char("java/lang/Class");
66  
67         native_method_register(u, methods, NATIVE_METHODS_COUNT);
68 }
69
70
71 /*
72  * Class:     java/lang/Class
73  * Method:    forName
74  * Signature: (Ljava/lang/String;)Ljava/lang/Class;
75  */
76 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_Class_forName(JNIEnv *env, jclass clazz, java_lang_String *name)
77 {
78         return _Jv_java_lang_Class_forName(name);
79 }
80
81
82 /*
83  * Class:     java/lang/Class
84  * Method:    newInstance
85  * Signature: ()Ljava/lang/Object;
86  */
87 JNIEXPORT java_lang_Object* JNICALL Java_java_lang_Class_newInstance(JNIEnv *env, java_lang_Class* this)
88 {
89         classinfo     *c;
90         java_handle_t *o;
91
92         c = LLNI_classinfo_unwrap(this);
93
94         o = native_new_and_init(c);
95
96         return (java_lang_Object *) o;
97 }
98
99
100 /*
101  * Class:     java/lang/Class
102  * Method:    isInstance
103  * Signature: (Ljava/lang/Object;)Z
104  */
105 JNIEXPORT s4 JNICALL Java_java_lang_Class_isInstance(JNIEnv *env, java_lang_Class *this, java_lang_Object *obj)
106 {
107         return _Jv_java_lang_Class_isInstance(this, obj);
108 }
109
110
111 /*
112  * Class:     java/lang/Class
113  * Method:    isAssignableFrom
114  * Signature: (Ljava/lang/Class;)Z
115  */
116 JNIEXPORT s4 JNICALL Java_java_lang_Class_isAssignableFrom(JNIEnv *env, java_lang_Class *this, java_lang_Class *cls)
117 {
118         return _Jv_java_lang_Class_isAssignableFrom(this, cls);
119 }
120
121
122 /*
123  * Class:     java/lang/Class
124  * Method:    getName
125  * Signature: ()Ljava/lang/String;
126  */
127 JNIEXPORT java_lang_String* JNICALL Java_java_lang_Class_getName(JNIEnv *env, java_lang_Class *this)
128 {
129         return _Jv_java_lang_Class_getName(this);
130 }
131
132
133 /*
134  * These are local overrides for various environment variables in Emacs.
135  * Please do not remove this and leave it at the end of the file, where
136  * Emacs will automagically detect them.
137  * ---------------------------------------------------------------------
138  * Local variables:
139  * mode: c
140  * indent-tabs-mode: t
141  * c-basic-offset: 4
142  * tab-width: 4
143  * End:
144  * vim:noexpandtab:sw=4:ts=4:
145  */