jjg@1521: /* ksrini@2227: * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. jjg@1521: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@1521: * jjg@1521: * This code is free software; you can redistribute it and/or modify it jjg@1521: * under the terms of the GNU General Public License version 2 only, as jjg@1521: * published by the Free Software Foundation. jjg@1521: * jjg@1521: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@1521: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@1521: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@1521: * version 2 for more details (a copy is included in the LICENSE file that jjg@1521: * accompanied this code). jjg@1521: * jjg@1521: * You should have received a copy of the GNU General Public License version jjg@1521: * 2 along with this work; if not, write to the Free Software Foundation, jjg@1521: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@1521: * jjg@1521: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@1521: * or visit www.oracle.com if you need additional information or have any jjg@1521: * questions. jjg@1521: */ jjg@1521: jjg@1521: import static com.sun.tools.classfile.TypeAnnotation.TargetType.*; jjg@1521: jjg@1521: /* jjg@1521: * @test jjg@1521: * @summary Test that the examples from the manual are stored as expected jjg@1521: * @compile -g Driver.java ReferenceInfoUtil.java FromSpecification.java jjg@1521: * @run main Driver FromSpecification jjg@1521: */ jjg@1521: public class FromSpecification { jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_FORMAL_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TC", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 0, 2, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TD", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 1}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TE", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 1, 3, 0}, paramIndex = 0) jjg@1521: }) jjg@1521: public String testSpec1() { jjg@1521: return "void test(@TA Map<@TB ? extends @TC String, @TD List<@TE Object>> a) { }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TF", type = METHOD_FORMAL_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TG", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {0, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TH", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {0, 0, 0, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TI", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {0, 0, 0, 0, 0, 0}, paramIndex = 0) jjg@1521: }) jjg@1521: public String testSpec2() { jjg@1521: return "void test(@TI String @TF [] @TG [] @TH [] a) { }"; jjg@1521: } jjg@1521: jjg@1521: // Note first "1, 0" for top-level class Test. jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TJ", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0, 1, 0, 1, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TK", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0, 1, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TL", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TM", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0}, paramIndex = 0) jjg@1521: }) jjg@1521: public String testSpec3() { jjg@1521: return "class Test { class O1 { class O2 { class O3 { class NestedStatic {} } } }" + jjg@1521: "void test(@TM O1.@TL O2.@TK O3.@TJ NestedStatic a) { } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_FORMAL_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TC", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 0, 3, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TD", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 0, 3, 0, 0, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TE", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 0, 3, 0, 0, 0, 0, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TF", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 0, 3, 0, 0, 0, 0, 0, 0, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TG", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 1}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TH", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {3, 1, 3, 0}, paramIndex = 0) jjg@1521: }) jjg@1521: public String testSpec4() { jjg@1521: return "void test(@TA Map<@TB Comparable<@TF Object @TC [] @TD [] @TE []>, @TG List<@TH String>> a) { }"; jjg@1521: } jjg@1521: jjg@1521: // Note first "1, 0" for top-level class Test. jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0, 1, 0, 1, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0, 1, 0, 1, 0, 3, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TC", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0, 1, 0, 1, 0, 3, 1}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TD", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0, 1, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TE", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TF", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0, 3, 0}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TG", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0, 1, 0, 3, 1}, paramIndex = 0), jjg@1521: @TADescription(annotation = "TH", type = METHOD_FORMAL_PARAMETER, jjg@1521: genericLocation = {1, 0}, paramIndex = 0) jjg@1521: }) jjg@1521: public String testSpec5() { jjg@1521: return "class Test { class O1 { class O2 { class O3 { class Nested {} } } }" + jjg@1521: "void test(@TH O1.@TE O2<@TF String, @TG String>.@TD O3.@TA Nested<@TB String, @TC String> a) { } }"; jjg@1521: } jjg@1521: }