676d1d53a765bfaedf578f8bb9c008082238cf4b
[cacao.git] / src / native / vm / java_lang_Class.h
1 /* src/native/vm/java_lang_Class.h - java/lang/Class functions
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    $Id: java_lang_VMClass.c 6131 2006-12-06 22:15:57Z twisti $
26
27 */
28
29
30 #ifndef _JV_JAVA_LANG_CLASS_H
31 #define _JV_JAVA_LANG_CLASS_H
32
33 #include "config.h"
34
35 #include <stdint.h>
36
37 #include "vm/types.h"
38
39 #include "native/jni.h"
40
41 #include "native/include/java_lang_String.h" /* required by java_lang_Class.h */
42 #include "native/include/java_lang_Class.h"
43 #include "native/include/java_lang_Object.h"
44
45 #if defined(ENABLE_JAVASE)
46 # include "native/include/java_lang_ClassLoader.h"
47 # include "native/include/java_lang_Throwable.h"
48 # include "native/include/java_lang_reflect_Constructor.h"
49 # include "native/include/java_lang_reflect_Method.h"
50 #endif
51
52
53 /* function prototypes ********************************************************/
54
55 java_lang_String              *_Jv_java_lang_Class_getName(java_lang_Class *klass);
56
57 #if defined(ENABLE_JAVASE)
58 java_lang_Class               *_Jv_java_lang_Class_forName(java_lang_String *name, s4 initialize, java_lang_ClassLoader *loader);
59 #elif defined(ENABLE_JAVAME_CLDC1_1)
60 java_lang_Class               *_Jv_java_lang_Class_forName(java_lang_String *name);
61 #endif
62
63 s4                             _Jv_java_lang_Class_isInstance(java_lang_Class *klass, java_lang_Object *o);
64 s4                             _Jv_java_lang_Class_isAssignableFrom(java_lang_Class *klass, java_lang_Class *c);
65 JNIEXPORT int32_t JNICALL      _Jv_java_lang_Class_isInterface(JNIEnv *env, java_lang_Class *this);
66
67 #if defined(ENABLE_JAVASE)
68 s4                             _Jv_java_lang_Class_isPrimitive(java_lang_Class *klass);
69 java_lang_Class               *_Jv_java_lang_Class_getSuperclass(java_lang_Class *klass);
70 java_handle_objectarray_t     *_Jv_java_lang_Class_getInterfaces(java_lang_Class *klass);
71 s4                             _Jv_java_lang_Class_getModifiers(java_lang_Class *klass, s4 ignoreInnerClassesAttrib);
72 java_lang_Class               *_Jv_java_lang_Class_getDeclaringClass(java_lang_Class *klass);
73 java_handle_objectarray_t     *_Jv_java_lang_Class_getDeclaredClasses(java_lang_Class *klass, s4 publicOnly);
74 java_handle_objectarray_t     *_Jv_java_lang_Class_getDeclaredFields(java_lang_Class *klass, s4 publicOnly);
75 java_handle_objectarray_t     *_Jv_java_lang_Class_getDeclaredMethods(java_lang_Class *klass, s4 publicOnly);
76 java_handle_objectarray_t     *_Jv_java_lang_Class_getDeclaredConstructors(java_lang_Class *klass, s4 publicOnly);
77 java_lang_ClassLoader         *_Jv_java_lang_Class_getClassLoader(java_lang_Class *klass);
78 #endif
79
80 JNIEXPORT int32_t JNICALL      _Jv_java_lang_Class_isArray(JNIEnv *env, java_lang_Class *this);
81
82 #if defined(ENABLE_JAVASE)
83 void                           _Jv_java_lang_Class_throwException(java_lang_Throwable *t);
84
85 #if defined(WITH_CLASSPATH_GNU) && defined(ENABLE_ANNOTATIONS)
86 java_handle_objectarray_t     *_Jv_java_lang_Class_getDeclaredAnnotations(java_lang_Class* klass);
87 #endif
88
89 java_lang_reflect_Constructor *_Jv_java_lang_Class_getEnclosingConstructor(java_lang_Class *klass);
90 java_lang_reflect_Method      *_Jv_java_lang_Class_getEnclosingMethod(java_lang_Class *klass);
91
92 java_lang_String              *_Jv_java_lang_Class_getClassSignature(java_lang_Class* klass);
93 #endif
94
95 #endif /* _JV_JAVA_LANG_CLASS_H */
96
97
98 /*
99  * These are local overrides for various environment variables in Emacs.
100  * Please do not remove this and leave it at the end of the file, where
101  * Emacs will automagically detect them.
102  * ---------------------------------------------------------------------
103  * Local variables:
104  * mode: c
105  * indent-tabs-mode: t
106  * c-basic-offset: 4
107  * tab-width: 4
108  * End:
109  * vim:noexpandtab:sw=4:ts=4:
110  */