2f96606419512fa38f8e2b2931edeb30c42d8267
[cacao.git] / src / native / vm / gnu / java_lang_reflect_VMProxy.c
1 /* src/native/vm/VMProxy.c - java/lang/reflect/VMProxy
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, 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    Contact: cacao@cacaojvm.org
26
27    Authors: Roman Obermaiser
28
29    Changes: Joseph Wenninger
30             Christian Thalinger
31
32    $Id: java_lang_reflect_VMProxy.c 6213 2006-12-18 17:36:06Z twisti $
33
34 */
35
36
37 #include <stdlib.h>
38
39 #include "native/jni.h"
40 #include "native/include/java_lang_Class.h"
41 #include "native/include/java_lang_ClassLoader.h"
42 #include "toolbox/logging.h"
43
44
45 /*
46  * Class:     java/lang/reflect/VMProxy
47  * Method:    getProxyClass
48  * Signature: (Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/Class;
49  */
50 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_reflect_VMProxy_getProxyClass(JNIEnv *env, jclass clazz, java_lang_ClassLoader *par1, java_objectarray *par2)
51 {
52         log_text("Java_java_lang_reflect_Proxy_getProxyClass: IMPLEMENT ME!");
53
54         return NULL;
55 }
56
57
58 /*
59  * Class:     java/lang/reflect/VMProxy
60  * Method:    getProxyData
61  * Signature: (Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/reflect/Proxy$ProxyData;
62  */
63 JNIEXPORT struct java_lang_reflect_Proxy_ProxyData* JNICALL Java_java_lang_reflect_VMProxy_getProxyData(JNIEnv *env, jclass clazz, java_lang_ClassLoader *par1, java_objectarray *par2)
64 {
65         log_text("Java_java_lang_reflect_Proxy_getProxyData: IMPLEMENT ME!");
66
67         return NULL;
68 }
69
70
71 /*
72  * Class:     java/lang/reflect/VMProxy
73  * Method:    generateProxyClass
74  * Signature: (Ljava/lang/ClassLoader;Ljava/lang/reflect/Proxy$ProxyData;)Ljava/lang/Class;
75  */
76 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_reflect_VMProxy_generateProxyClass(JNIEnv *env, jclass clazz, java_lang_ClassLoader *par1, struct java_lang_reflect_Proxy_ProxyData *par2)
77 {
78         log_text("Java_java_lang_reflect_Proxy_generateProxyClass: IMPLEMENT ME!");
79
80         return NULL;
81 }
82
83
84 /*
85  * These are local overrides for various environment variables in Emacs.
86  * Please do not remove this and leave it at the end of the file, where
87  * Emacs will automagically detect them.
88  * ---------------------------------------------------------------------
89  * Local variables:
90  * mode: c
91  * indent-tabs-mode: t
92  * c-basic-offset: 4
93  * tab-width: 4
94  * End:
95  */