* src/vm/exceptions.c (exceptions_throw_unsatisfiedlinkerror)
[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 #include "vm/types.h"
35
36 #include "native/jni.h"
37
38 #include "native/include/java_lang_String.h" /* required by java_lang_Class.h */
39 #include "native/include/java_lang_Class.h"
40 #include "native/include/java_lang_Object.h"
41
42 #if defined(ENABLE_JAVASE)
43 # include "native/include/java_lang_ClassLoader.h"
44 # include "native/include/java_lang_Throwable.h"
45 # include "native/include/java_lang_reflect_Constructor.h"
46 # include "native/include/java_lang_reflect_Method.h"
47 #endif
48
49
50 /* function prototypes ********************************************************/
51
52 java_lang_String              *_Jv_java_lang_Class_getName(java_lang_Class *klass);
53
54 #if defined(ENABLE_JAVASE)
55 java_lang_Class               *_Jv_java_lang_Class_forName(java_lang_String *name, s4 initialize, java_lang_ClassLoader *loader);
56 #elif defined(ENABLE_JAVAME_CLDC1_1)
57 java_lang_Class               *_Jv_java_lang_Class_forName(java_lang_String *name);
58 #endif
59
60 s4                             _Jv_java_lang_Class_isInstance(java_lang_Class *klass, java_lang_Object *o);
61 s4                             _Jv_java_lang_Class_isAssignableFrom(java_lang_Class *klass, java_lang_Class *c);
62 s4                             _Jv_java_lang_Class_isInterface(java_lang_Class *klass);
63
64 #if defined(ENABLE_JAVASE)
65 s4                             _Jv_java_lang_Class_isPrimitive(java_lang_Class *klass);
66 java_lang_Class               *_Jv_java_lang_Class_getSuperclass(java_lang_Class *klass);
67 java_objectarray              *_Jv_java_lang_Class_getInterfaces(java_lang_Class *klass);
68 java_lang_Class               *_Jv_java_lang_Class_getComponentType(java_lang_Class *klass);
69 s4                             _Jv_java_lang_Class_getModifiers(java_lang_Class *klass, s4 ignoreInnerClassesAttrib);
70 java_lang_Class               *_Jv_java_lang_Class_getDeclaringClass(java_lang_Class *klass);
71 java_objectarray              *_Jv_java_lang_Class_getDeclaredClasses(java_lang_Class *klass, s4 publicOnly);
72 java_objectarray              *_Jv_java_lang_Class_getDeclaredFields(java_lang_Class *klass, s4 publicOnly);
73 java_objectarray              *_Jv_java_lang_Class_getDeclaredMethods(java_lang_Class *klass, s4 publicOnly);
74 java_objectarray              *_Jv_java_lang_Class_getDeclaredConstructors(java_lang_Class *klass, s4 publicOnly);
75 java_lang_ClassLoader         *_Jv_java_lang_Class_getClassLoader(java_lang_Class *klass);
76 #endif
77
78 s4                             _Jv_java_lang_Class_isArray(java_lang_Class *klass);
79
80 #if defined(ENABLE_JAVASE)
81 void                           _Jv_java_lang_Class_throwException(java_lang_Throwable *t);
82
83 #if 0
84 java_objectarray              *_Jv_java_lang_Class_getDeclaredAnnotations(java_lang_Class* klass);
85 #endif
86
87 java_lang_Class               *_Jv_java_lang_Class_getEnclosingClass(java_lang_Class *klass);
88 java_lang_reflect_Constructor *_Jv_java_lang_Class_getEnclosingConstructor(java_lang_Class *klass);
89 java_lang_reflect_Method      *_Jv_java_lang_Class_getEnclosingMethod(java_lang_Class *klass);
90
91 java_lang_String              *_Jv_java_lang_Class_getClassSignature(java_lang_Class* klass);
92 #endif
93
94 #if 0
95 s4                             _Jv_java_lang_Class_isAnonymousClass(JNIEnv *env, jclass clazz, struct java_lang_Class* par1);
96 JNIEXPORT s4 JNICALL Java_java_lang_VMClass_isLocalClass(JNIEnv *env, jclass clazz, struct java_lang_Class* par1);
97 JNIEXPORT s4 JNICALL Java_java_lang_VMClass_isMemberClass(JNIEnv *env, jclass clazz, struct java_lang_Class* par1);
98 #endif
99
100 #endif /* _JV_JAVA_LANG_CLASS_H */
101
102
103 /*
104  * These are local overrides for various environment variables in Emacs.
105  * Please do not remove this and leave it at the end of the file, where
106  * Emacs will automagically detect them.
107  * ---------------------------------------------------------------------
108  * Local variables:
109  * mode: c
110  * indent-tabs-mode: t
111  * c-basic-offset: 4
112  * tab-width: 4
113  * End:
114  * vim:noexpandtab:sw=4:ts=4:
115  */