summaryrefslogtreecommitdiffstats
path: root/libjava/sun/reflect/annotation
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-09 19:58:05 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-09 19:58:05 +0000
commit65bf3316cf384588453604be6b4f0ed3751a8b0f (patch)
tree996a5f57d4a68c53473382e45cb22f574cb3e4db /libjava/sun/reflect/annotation
parent8fc56618a84446beccd45b80381cdfe0e94050df (diff)
downloadppe42-gcc-65bf3316cf384588453604be6b4f0ed3751a8b0f.tar.gz
ppe42-gcc-65bf3316cf384588453604be6b4f0ed3751a8b0f.zip
Merged gcj-eclipse branch to trunk.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120621 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/sun/reflect/annotation')
-rw-r--r--libjava/sun/reflect/annotation/AnnotationInvocationHandler.h55
-rw-r--r--libjava/sun/reflect/annotation/AnnotationParser.h33
-rw-r--r--libjava/sun/reflect/annotation/AnnotationType.h33
-rw-r--r--libjava/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.h32
-rw-r--r--libjava/sun/reflect/annotation/ExceptionProxy.h32
5 files changed, 185 insertions, 0 deletions
diff --git a/libjava/sun/reflect/annotation/AnnotationInvocationHandler.h b/libjava/sun/reflect/annotation/AnnotationInvocationHandler.h
new file mode 100644
index 00000000000..0679e3c3fd5
--- /dev/null
+++ b/libjava/sun/reflect/annotation/AnnotationInvocationHandler.h
@@ -0,0 +1,55 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __sun_reflect_annotation_AnnotationInvocationHandler__
+#define __sun_reflect_annotation_AnnotationInvocationHandler__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace sun
+ {
+ namespace reflect
+ {
+ namespace annotation
+ {
+ class AnnotationInvocationHandler;
+ }
+ }
+ }
+}
+
+class sun::reflect::annotation::AnnotationInvocationHandler : public ::java::lang::Object
+{
+
+public:
+ AnnotationInvocationHandler(::java::lang::Class *, ::java::util::Map *);
+ static ::java::lang::annotation::Annotation * create(::java::lang::Class *, ::java::util::Map *);
+ static jboolean equals(::java::lang::Class *, ::java::util::Map *, ::java::lang::Object *);
+private:
+ static jboolean deepEquals(::java::lang::Object *, ::java::lang::Object *);
+ static jint deepHashCode(::java::lang::Object *);
+public:
+ static jint hashCode(::java::lang::Class *, ::java::util::Map *);
+private:
+ static ::java::lang::String * deepToString(::java::lang::Object *);
+public:
+ static ::java::lang::String * toString(::java::lang::Class *, ::java::util::Map *);
+private:
+ static ::java::lang::Class * getBoxedReturnType(::java::lang::reflect::Method *);
+ ::java::lang::Object * arrayClone(::java::lang::Object *);
+public:
+ ::java::lang::Object * invoke(::java::lang::Object *, ::java::lang::reflect::Method *, JArray< ::java::lang::Object * > *);
+private:
+ static const jlong serialVersionUID = 6182022883658399397LL;
+ ::java::lang::Class * __attribute__((aligned(__alignof__( ::java::lang::Object)))) type;
+ ::java::util::Map * memberValues;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __sun_reflect_annotation_AnnotationInvocationHandler__
diff --git a/libjava/sun/reflect/annotation/AnnotationParser.h b/libjava/sun/reflect/annotation/AnnotationParser.h
new file mode 100644
index 00000000000..d5ca9737ac9
--- /dev/null
+++ b/libjava/sun/reflect/annotation/AnnotationParser.h
@@ -0,0 +1,33 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __sun_reflect_annotation_AnnotationParser__
+#define __sun_reflect_annotation_AnnotationParser__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace sun
+ {
+ namespace reflect
+ {
+ namespace annotation
+ {
+ class AnnotationParser;
+ }
+ }
+ }
+}
+
+class sun::reflect::annotation::AnnotationParser : public ::java::lang::Object
+{
+
+public:
+ AnnotationParser();
+ static ::java::lang::annotation::Annotation * annotationForMap(::java::lang::Class *, ::java::util::Map *);
+ static ::java::lang::Class class$;
+};
+
+#endif // __sun_reflect_annotation_AnnotationParser__
diff --git a/libjava/sun/reflect/annotation/AnnotationType.h b/libjava/sun/reflect/annotation/AnnotationType.h
new file mode 100644
index 00000000000..3d21e0f14cb
--- /dev/null
+++ b/libjava/sun/reflect/annotation/AnnotationType.h
@@ -0,0 +1,33 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __sun_reflect_annotation_AnnotationType__
+#define __sun_reflect_annotation_AnnotationType__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace sun
+ {
+ namespace reflect
+ {
+ namespace annotation
+ {
+ class AnnotationType;
+ }
+ }
+ }
+}
+
+class sun::reflect::annotation::AnnotationType : public ::java::lang::Object
+{
+
+public:
+ AnnotationType();
+ static ::java::lang::Class * invocationHandlerReturnType(::java::lang::Class *);
+ static ::java::lang::Class class$;
+};
+
+#endif // __sun_reflect_annotation_AnnotationType__
diff --git a/libjava/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.h b/libjava/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.h
new file mode 100644
index 00000000000..63d853b5d21
--- /dev/null
+++ b/libjava/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.h
@@ -0,0 +1,32 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __sun_reflect_annotation_EnumConstantNotPresentExceptionProxy__
+#define __sun_reflect_annotation_EnumConstantNotPresentExceptionProxy__
+
+#pragma interface
+
+#include <sun/reflect/annotation/ExceptionProxy.h>
+extern "Java"
+{
+ namespace sun
+ {
+ namespace reflect
+ {
+ namespace annotation
+ {
+ class EnumConstantNotPresentExceptionProxy;
+ }
+ }
+ }
+}
+
+class sun::reflect::annotation::EnumConstantNotPresentExceptionProxy : public ::sun::reflect::annotation::ExceptionProxy
+{
+
+public:
+ EnumConstantNotPresentExceptionProxy(::java::lang::Class *, ::java::lang::String *);
+ static ::java::lang::Class class$;
+};
+
+#endif // __sun_reflect_annotation_EnumConstantNotPresentExceptionProxy__
diff --git a/libjava/sun/reflect/annotation/ExceptionProxy.h b/libjava/sun/reflect/annotation/ExceptionProxy.h
new file mode 100644
index 00000000000..ca6a3cd692b
--- /dev/null
+++ b/libjava/sun/reflect/annotation/ExceptionProxy.h
@@ -0,0 +1,32 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __sun_reflect_annotation_ExceptionProxy__
+#define __sun_reflect_annotation_ExceptionProxy__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace sun
+ {
+ namespace reflect
+ {
+ namespace annotation
+ {
+ class ExceptionProxy;
+ }
+ }
+ }
+}
+
+class sun::reflect::annotation::ExceptionProxy : public ::java::lang::Object
+{
+
+public:
+ ExceptionProxy();
+ static ::java::lang::Class class$;
+};
+
+#endif // __sun_reflect_annotation_ExceptionProxy__
OpenPOWER on IntegriCloud