test/tools/apt/mirror/declaration/AnnoMirror.java

Tue, 25 May 2010 15:54:51 -0700

author
ohair
date
Tue, 25 May 2010 15:54:51 -0700
changeset 554
9d9f26857129
parent 174
fdfed22db054
permissions
-rw-r--r--

6943119: Rebrand source copyright notices
Reviewed-by: darcy

duke@1 1 /*
ohair@554 2 * Copyright (c) 2004, 2008, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
duke@1 7 * published by the Free Software Foundation.
duke@1 8 *
duke@1 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 13 * accompanied this code).
duke@1 14 *
duke@1 15 * You should have received a copy of the GNU General Public License version
duke@1 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 18 *
ohair@554 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 20 * or visit www.oracle.com if you need additional information or have any
ohair@554 21 * questions.
duke@1 22 */
duke@1 23
duke@1 24
duke@1 25 /*
duke@1 26 * @test
duke@1 27 * @bug 4853450 5014539
duke@1 28 * @summary Tests AnnotationMirror and AnnotationValue methods.
duke@1 29 * @library ../../lib
duke@1 30 * @compile -source 1.5 AnnoMirror.java
jjg@132 31 * @run main/othervm AnnoMirror
duke@1 32 */
duke@1 33
duke@1 34
duke@1 35 import java.util.*;
duke@1 36 import com.sun.mirror.declaration.*;
duke@1 37 import com.sun.mirror.type.*;
duke@1 38
duke@1 39
duke@1 40 public class AnnoMirror extends Tester {
duke@1 41
duke@1 42 public static void main(String[] args) {
duke@1 43 (new AnnoMirror()).run();
duke@1 44 }
duke@1 45
duke@1 46
duke@1 47 @Test(result={"AT1"})
duke@1 48 @AT1
duke@1 49 AnnotationType getAnnotationType() {
duke@1 50 AnnotationMirror anno = getAnno("getAnnotationType", "AT1");
duke@1 51 return anno.getAnnotationType();
duke@1 52 }
duke@1 53
duke@1 54 @Test(result={})
duke@1 55 @AT1
duke@1 56 Set getElementValuesNone() {
duke@1 57 AnnotationMirror anno = getAnno("getElementValuesNone", "AT1");
duke@1 58 return anno.getElementValues().entrySet();
duke@1 59 }
duke@1 60
duke@1 61
duke@1 62 // The seemingly out-of-place parens in the following "result"
duke@1 63 // entry are needed due to the shortcut of having the test return
duke@1 64 // the entry set directly.
duke@1 65 @Test(result={"i()=2",
duke@1 66 "b()=true",
duke@1 67 "k()=java.lang.Boolean.class",
duke@1 68 "a()=@AT1"})
duke@1 69 @AT2(i = 1+1,
duke@1 70 b = true,
duke@1 71 k = Boolean.class,
duke@1 72 a = @AT1)
duke@1 73 Set getElementValues() {
duke@1 74 AnnotationMirror anno = getAnno("getElementValues", "AT2");
duke@1 75 return anno.getElementValues().entrySet();
duke@1 76 }
duke@1 77
duke@1 78 @Test(result={"@AT1(\"zax\")",
duke@1 79 "@AT2(i=2, b=true, k=java.lang.Boolean.class, a=@AT1)",
duke@1 80 "@AT3(arr={1})",
duke@1 81 "@AT4({2, 3, 4})"})
duke@1 82 Collection<AnnotationMirror> toStringTests() {
duke@1 83 for (MethodDeclaration m : thisClassDecl.getMethods()) {
duke@1 84 if (m.getSimpleName().equals("toStringTestsHelper")) {
duke@1 85 return m.getAnnotationMirrors();
duke@1 86 }
duke@1 87 }
duke@1 88 throw new AssertionError();
duke@1 89 }
duke@1 90
duke@1 91 @AT1("zax")
duke@1 92 @AT2(i = 1+1,
duke@1 93 b = true,
duke@1 94 k = Boolean.class,
duke@1 95 a = @AT1)
duke@1 96 @AT3(arr={1})
duke@1 97 @AT4({2,3,4})
duke@1 98 private void toStringTestsHelper() {
duke@1 99 }
duke@1 100 }
duke@1 101
duke@1 102
duke@1 103 /*
duke@1 104 * Annotations used for testing.
duke@1 105 */
duke@1 106
duke@1 107 @interface AT1 {
duke@1 108 String value() default "";
duke@1 109 }
duke@1 110
duke@1 111 @interface AT2 {
duke@1 112 int i();
duke@1 113 boolean b();
duke@1 114 Class k();
duke@1 115 AT1 a();
duke@1 116 }
duke@1 117
duke@1 118 @interface AT3 {
duke@1 119 int[] arr();
duke@1 120 }
duke@1 121
duke@1 122 @interface AT4 {
duke@1 123 int[] value();
duke@1 124 }

mercurial