test/tools/javac/annotations/typeAnnotations/referenceinfos/FromSpecification.java

Thu, 31 Aug 2017 15:17:03 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:17:03 +0800
changeset 2525
2eb010b6cb22
parent 2227
998b10c43157
parent 0
959103a6100f
permissions
-rw-r--r--

merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 */
aoqi@0 23
aoqi@0 24 import static com.sun.tools.classfile.TypeAnnotation.TargetType.*;
aoqi@0 25
aoqi@0 26 /*
aoqi@0 27 * @test
aoqi@0 28 * @summary Test that the examples from the manual are stored as expected
aoqi@0 29 * @compile -g Driver.java ReferenceInfoUtil.java FromSpecification.java
aoqi@0 30 * @run main Driver FromSpecification
aoqi@0 31 */
aoqi@0 32 public class FromSpecification {
aoqi@0 33
aoqi@0 34 @TADescriptions({
aoqi@0 35 @TADescription(annotation = "TA", type = METHOD_FORMAL_PARAMETER, paramIndex = 0),
aoqi@0 36 @TADescription(annotation = "TB", type = METHOD_FORMAL_PARAMETER,
aoqi@0 37 genericLocation = {3, 0}, paramIndex = 0),
aoqi@0 38 @TADescription(annotation = "TC", type = METHOD_FORMAL_PARAMETER,
aoqi@0 39 genericLocation = {3, 0, 2, 0}, paramIndex = 0),
aoqi@0 40 @TADescription(annotation = "TD", type = METHOD_FORMAL_PARAMETER,
aoqi@0 41 genericLocation = {3, 1}, paramIndex = 0),
aoqi@0 42 @TADescription(annotation = "TE", type = METHOD_FORMAL_PARAMETER,
aoqi@0 43 genericLocation = {3, 1, 3, 0}, paramIndex = 0)
aoqi@0 44 })
aoqi@0 45 public String testSpec1() {
aoqi@0 46 return "void test(@TA Map<@TB ? extends @TC String, @TD List<@TE Object>> a) { }";
aoqi@0 47 }
aoqi@0 48
aoqi@0 49 @TADescriptions({
aoqi@0 50 @TADescription(annotation = "TF", type = METHOD_FORMAL_PARAMETER, paramIndex = 0),
aoqi@0 51 @TADescription(annotation = "TG", type = METHOD_FORMAL_PARAMETER,
aoqi@0 52 genericLocation = {0, 0}, paramIndex = 0),
aoqi@0 53 @TADescription(annotation = "TH", type = METHOD_FORMAL_PARAMETER,
aoqi@0 54 genericLocation = {0, 0, 0, 0}, paramIndex = 0),
aoqi@0 55 @TADescription(annotation = "TI", type = METHOD_FORMAL_PARAMETER,
aoqi@0 56 genericLocation = {0, 0, 0, 0, 0, 0}, paramIndex = 0)
aoqi@0 57 })
aoqi@0 58 public String testSpec2() {
aoqi@0 59 return "void test(@TI String @TF [] @TG [] @TH [] a) { }";
aoqi@0 60 }
aoqi@0 61
aoqi@0 62 // Note first "1, 0" for top-level class Test.
aoqi@0 63 @TADescriptions({
aoqi@0 64 @TADescription(annotation = "TJ", type = METHOD_FORMAL_PARAMETER,
aoqi@0 65 genericLocation = {1, 0, 1, 0, 1, 0, 1, 0}, paramIndex = 0),
aoqi@0 66 @TADescription(annotation = "TK", type = METHOD_FORMAL_PARAMETER,
aoqi@0 67 genericLocation = {1, 0, 1, 0, 1, 0}, paramIndex = 0),
aoqi@0 68 @TADescription(annotation = "TL", type = METHOD_FORMAL_PARAMETER,
aoqi@0 69 genericLocation = {1, 0, 1, 0}, paramIndex = 0),
aoqi@0 70 @TADescription(annotation = "TM", type = METHOD_FORMAL_PARAMETER,
aoqi@0 71 genericLocation = {1, 0}, paramIndex = 0)
aoqi@0 72 })
aoqi@0 73 public String testSpec3() {
aoqi@0 74 return "class Test { class O1 { class O2 { class O3 { class NestedStatic {} } } }" +
aoqi@0 75 "void test(@TM O1.@TL O2.@TK O3.@TJ NestedStatic a) { } }";
aoqi@0 76 }
aoqi@0 77
aoqi@0 78 @TADescriptions({
aoqi@0 79 @TADescription(annotation = "TA", type = METHOD_FORMAL_PARAMETER, paramIndex = 0),
aoqi@0 80 @TADescription(annotation = "TB", type = METHOD_FORMAL_PARAMETER,
aoqi@0 81 genericLocation = {3, 0}, paramIndex = 0),
aoqi@0 82 @TADescription(annotation = "TC", type = METHOD_FORMAL_PARAMETER,
aoqi@0 83 genericLocation = {3, 0, 3, 0}, paramIndex = 0),
aoqi@0 84 @TADescription(annotation = "TD", type = METHOD_FORMAL_PARAMETER,
aoqi@0 85 genericLocation = {3, 0, 3, 0, 0, 0}, paramIndex = 0),
aoqi@0 86 @TADescription(annotation = "TE", type = METHOD_FORMAL_PARAMETER,
aoqi@0 87 genericLocation = {3, 0, 3, 0, 0, 0, 0, 0}, paramIndex = 0),
aoqi@0 88 @TADescription(annotation = "TF", type = METHOD_FORMAL_PARAMETER,
aoqi@0 89 genericLocation = {3, 0, 3, 0, 0, 0, 0, 0, 0, 0}, paramIndex = 0),
aoqi@0 90 @TADescription(annotation = "TG", type = METHOD_FORMAL_PARAMETER,
aoqi@0 91 genericLocation = {3, 1}, paramIndex = 0),
aoqi@0 92 @TADescription(annotation = "TH", type = METHOD_FORMAL_PARAMETER,
aoqi@0 93 genericLocation = {3, 1, 3, 0}, paramIndex = 0)
aoqi@0 94 })
aoqi@0 95 public String testSpec4() {
aoqi@0 96 return "void test(@TA Map<@TB Comparable<@TF Object @TC [] @TD [] @TE []>, @TG List<@TH String>> a) { }";
aoqi@0 97 }
aoqi@0 98
aoqi@0 99 // Note first "1, 0" for top-level class Test.
aoqi@0 100 @TADescriptions({
aoqi@0 101 @TADescription(annotation = "TA", type = METHOD_FORMAL_PARAMETER,
aoqi@0 102 genericLocation = {1, 0, 1, 0, 1, 0, 1, 0}, paramIndex = 0),
aoqi@0 103 @TADescription(annotation = "TB", type = METHOD_FORMAL_PARAMETER,
aoqi@0 104 genericLocation = {1, 0, 1, 0, 1, 0, 1, 0, 3, 0}, paramIndex = 0),
aoqi@0 105 @TADescription(annotation = "TC", type = METHOD_FORMAL_PARAMETER,
aoqi@0 106 genericLocation = {1, 0, 1, 0, 1, 0, 1, 0, 3, 1}, paramIndex = 0),
aoqi@0 107 @TADescription(annotation = "TD", type = METHOD_FORMAL_PARAMETER,
aoqi@0 108 genericLocation = {1, 0, 1, 0, 1, 0}, paramIndex = 0),
aoqi@0 109 @TADescription(annotation = "TE", type = METHOD_FORMAL_PARAMETER,
aoqi@0 110 genericLocation = {1, 0, 1, 0}, paramIndex = 0),
aoqi@0 111 @TADescription(annotation = "TF", type = METHOD_FORMAL_PARAMETER,
aoqi@0 112 genericLocation = {1, 0, 1, 0, 3, 0}, paramIndex = 0),
aoqi@0 113 @TADescription(annotation = "TG", type = METHOD_FORMAL_PARAMETER,
aoqi@0 114 genericLocation = {1, 0, 1, 0, 3, 1}, paramIndex = 0),
aoqi@0 115 @TADescription(annotation = "TH", type = METHOD_FORMAL_PARAMETER,
aoqi@0 116 genericLocation = {1, 0}, paramIndex = 0)
aoqi@0 117 })
aoqi@0 118 public String testSpec5() {
aoqi@0 119 return "class Test { class O1 { class O2<A, B> { class O3 { class Nested<X, Y> {} } } }" +
aoqi@0 120 "void test(@TH O1.@TE O2<@TF String, @TG String>.@TD O3.@TA Nested<@TB String, @TC String> a) { } }";
aoqi@0 121 }
aoqi@0 122 }

mercurial