* THIRDPARTY: Added copyright notice for newly imported files.
authorMathias Panzenboeck <e0427417@student.tuwien.ac.at>
Mon, 3 Sep 2007 12:09:02 +0000 (14:09 +0200)
committerMathias Panzenboeck <e0427417@student.tuwien.ac.at>
Mon, 3 Sep 2007 12:09:02 +0000 (14:09 +0200)
* src/lib/Makefile.am
(VM_JAVA_FILES) [ENABLE_ANNOTATIONS]: Added
$(top_srcdir)/src/lib/gnu/sun/reflect/annotation/ExceptionProxy.java and
$(top_srcdir)/src/lib/gnu/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.java
(VM_CLASS_FILES) [ENABLE_ANNOTATIONS]: Added
classes/sun/reflect/annotation/ExceptionProxy.class and
classes/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.class

* src/lib/gnu/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.java:
Imported from OpenJDK. This file was only an unimplemented stub in GNU Classpath.

* src/lib/gnu/sun/reflect/annotation/ExceptionProxy.java: Likewise.

THIRDPARTY
src/lib/Makefile.am
src/lib/gnu/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.java [new file with mode: 0644]
src/lib/gnu/sun/reflect/annotation/ExceptionProxy.java [new file with mode: 0644]

index c804bed90de7a54d6026b28316005b1eb401697a..ec1766123ade024727c646a8dc99d8377ba5f2e5 100644 (file)
@@ -211,11 +211,14 @@ Copyright (C) 2006 Edwin Steiner <edwin.steiner@gmx.net>
 See contrib/vmlog/COPYING for the full text of the license.
 
 
-* contrib/mapfile-vers-product, src/lib/gnu/sun/misc/Unsafe.java,
+* contrib/mapfile-vers-product,
+  src/lib/gnu/sun/misc/Unsafe.java,
   src/lib/gnu/sun/reflect/ConstantPool.java,
   src/lib/gnu/sun/reflect/annotation/AnnotationParser.java,
   src/lib/gnu/sun/reflect/annotation/AnnotationType.java,
   src/lib/gnu/sun/reflect/annotation/AnnotationTypeMismatchExceptionProxy.java,
+  src/lib/gnu/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.java,
+  src/lib/gnu/sun/reflect/annotation/ExceptionProxy.java,
   src/lib/gnu/sun/reflect/annotation/TypeNotPresentExceptionProxy.java
 
 Copyright 2000-2006 Sun Microsystems, Inc.  All Rights Reserved.
index f82b4aa7730fcb7c99ba141e419b9e27ed1fa0f0..bdc41c2dcc3a915cb6e8c6a83ca3efdce8b938dc 100644 (file)
@@ -61,16 +61,20 @@ VM_CLASS_FILES = \
 
 if ENABLE_ANNOTATIONS
 VM_JAVA_FILES += \
+       $(top_srcdir)/src/lib/gnu/sun/reflect/ConstantPool.java \
+       $(top_srcdir)/src/lib/gnu/sun/reflect/annotation/ExceptionProxy.java \
+       $(top_srcdir)/src/lib/gnu/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.java \
        $(top_srcdir)/src/lib/gnu/sun/reflect/annotation/TypeNotPresentExceptionProxy.java \
        $(top_srcdir)/src/lib/gnu/sun/reflect/annotation/AnnotationTypeMismatchExceptionProxy.java \
-       $(top_srcdir)/src/lib/gnu/sun/reflect/ConstantPool.java \
        $(top_srcdir)/src/lib/gnu/sun/reflect/annotation/AnnotationType.java \
        $(top_srcdir)/src/lib/gnu/sun/reflect/annotation/AnnotationParser.java
 
 VM_CLASS_FILES += \
+       classes/sun/reflect/ConstantPool.class \
+       classes/sun/reflect/annotation/ExceptionProxy.class \
+       classes/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.class \
        classes/sun/reflect/annotation/TypeNotPresentExceptionProxy.class \
        classes/sun/reflect/annotation/AnnotationTypeMismatchExceptionProxy.class \
-       classes/sun/reflect/ConstantPool.class \
        classes/sun/reflect/annotation/AnnotationType.class \
        classes/sun/reflect/annotation/AnnotationParser.class
 endif
diff --git a/src/lib/gnu/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.java b/src/lib/gnu/sun/reflect/annotation/EnumConstantNotPresentExceptionProxy.java
new file mode 100644 (file)
index 0000000..6049a3f
--- /dev/null
@@ -0,0 +1,48 @@
+/*
+ * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Sun designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Sun in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+package sun.reflect.annotation;
+import java.lang.annotation.*;
+
+/**
+ * ExceptionProxy for EnumConstantNotPresentException.
+ *
+ * @author  Josh Bloch
+ * @since   1.5
+ */
+public class EnumConstantNotPresentExceptionProxy extends ExceptionProxy {
+    Class<? extends Enum> enumType;
+    String constName;
+
+    public EnumConstantNotPresentExceptionProxy(Class<? extends Enum> enumType,
+                                                String constName) {
+        this.enumType = enumType;
+        this.constName = constName;
+    }
+
+    protected RuntimeException generateException() {
+        return new EnumConstantNotPresentException(enumType, constName);
+    }
+}
diff --git a/src/lib/gnu/sun/reflect/annotation/ExceptionProxy.java b/src/lib/gnu/sun/reflect/annotation/ExceptionProxy.java
new file mode 100644 (file)
index 0000000..e9cda0b
--- /dev/null
@@ -0,0 +1,41 @@
+/*
+ * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Sun designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Sun in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ */
+
+package sun.reflect.annotation;
+
+/**
+ * An instance of this class is stored in an AnnotationInvocationHandler's
+ * "memberValues" map in lieu of a value for an annotation member that
+ * cannot be returned due to some exceptional condition (typically some
+ * form of illegal evolution of the annotation class).  The ExceptionProxy
+ * instance describes the exception that the dynamic proxy should throw if
+ * it is queried for this member.
+ *
+ * @author  Josh Bloch
+ * @since   1.5
+ */
+public abstract class ExceptionProxy implements java.io.Serializable {
+    protected abstract RuntimeException generateException();
+}