* src/native/jni.h: Removed.
[cacao.git] / src / native / vm / reflection.hpp
1 /* src/native/vm/reflection.hpp - helper functions for java/lang/reflect
2
3    Copyright (C) 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _REFLECTION_HPP
27 #define _REFLECTION_HPP
28
29 #include "config.h"
30
31 #include <stdint.h>
32
33 #include "native/native.h"
34
35 #include "vm/field.h"
36 #include "vm/method.h"
37
38
39 class Reflection {
40 public:
41         static java_handle_t* invoke(methodinfo *m, java_handle_t *o, java_handle_objectarray_t *params);
42
43 #if defined(WITH_JAVA_RUNTIME_LIBRARY_GNU_CLASSPATH) && defined(ENABLE_ANNOTATIONS)
44         static java_handle_t* get_declaredannotations(java_handle_bytearray_t *annotations, classinfo* declaringClass, classinfo *referer);
45         static java_handle_objectarray_t* get_parameterannotations(java_handle_bytearray_t* parameterAnnotations, methodinfo* m, classinfo *referer);
46 #endif
47 };
48
49 #endif // _REFLECTION_HPP
50
51
52 /*
53  * These are local overrides for various environment variables in Emacs.
54  * Please do not remove this and leave it at the end of the file, where
55  * Emacs will automagically detect them.
56  * ---------------------------------------------------------------------
57  * Local variables:
58  * mode: c++
59  * indent-tabs-mode: t
60  * c-basic-offset: 4
61  * tab-width: 4
62  * End:
63  * vim:noexpandtab:sw=4:ts=4:
64  */