jjg@1521: /* darcy@1534: * Copyright (c) 2009, 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 population of reference info for method type parameters jjg@1521: * @compile -g Driver.java ReferenceInfoUtil.java MethodTypeParam.java jjg@1521: * @run main Driver MethodTypeParam jjg@1521: */ jjg@1521: public class MethodTypeParam { jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 0), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER, paramIndex = 1), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 0), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1) jjg@1521: }) jjg@1521: public String regularClass() { jjg@1521: return "<@TA K extends @TB Date, @TC V extends @TD Object & @TE Cloneable> void test() { }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 0), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER, paramIndex = 1), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1) jjg@1521: }) jjg@1521: public String regularClass2() { jjg@1521: return "<@TA K extends @TB Date, @TC V extends @TE Cloneable> void test() { }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1, genericLocation = {3, 1}), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0}), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0, 3, 0}), jjg@1521: @TADescription(annotation = "TF", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 0) jjg@1521: }) jjg@1521: public String regularClassParameterized() { jjg@1521: return ", V extends @TF Object & @TC List<@TD List<@TE Object>>> void test() { }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 0), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER, paramIndex = 1), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 0), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1) jjg@1521: }) jjg@1521: public String abstractClass() { jjg@1521: return "abstract class Test { abstract <@TA K extends @TB Date, @TC V extends @TD Object & @TE Cloneable> void test(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1, genericLocation = {3, 1}), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0}), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0, 3, 0}), jjg@1521: @TADescription(annotation = "TF", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 0), jjg@1521: @TADescription(annotation = "TG", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 0) jjg@1521: }) jjg@1521: public String abstractClassParameterized() { jjg@1521: return "abstract class Test { abstract , V extends @TF Object & @TC List<@TD List<@TE Object>>> void test(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1, genericLocation = {3, 1}), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0}), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0, 3, 0}) jjg@1521: }) jjg@1521: public String abstractClassParameterized2() { jjg@1521: return "abstract class Test { abstract , V extends @TC List<@TD List<@TE Object>>> void test(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1) jjg@1521: }) jjg@1521: public String abstractClassParameterized3() { jjg@1521: return "abstract class Test { abstract , V extends @TB List> void test(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 0), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER, paramIndex = 1), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 0), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1) jjg@1521: }) jjg@1521: public String regularInterface() { jjg@1521: return "interface Test { <@TA K extends @TB Date, @TC V extends @TD Object & @TE Cloneable> void test(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1, genericLocation = {3, 1}), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0}), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0, 3, 0}), jjg@1521: @TADescription(annotation = "TF", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 0), jjg@1521: @TADescription(annotation = "TG", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 0), jjg@1521: @TADescription(annotation = "TH", type = METHOD_TYPE_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TI", type = METHOD_TYPE_PARAMETER, paramIndex = 1) jjg@1521: }) jjg@1521: public String regularInterfaceParameterized() { jjg@1521: return "interface Test { <@TH K extends @TG Object & @TA Map, @TI V extends @TF Object & @TC List<@TD List<@TE Object>>> void test(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1, genericLocation = {3, 1}), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0}), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 1, boundIndex = 1, genericLocation = {3, 0, 3, 0}), jjg@1521: @TADescription(annotation = "TF", type = METHOD_TYPE_PARAMETER, paramIndex = 0), jjg@1521: @TADescription(annotation = "TG", type = METHOD_TYPE_PARAMETER, paramIndex = 1) jjg@1521: }) jjg@1521: public String regularInterfaceParameterized2() { jjg@1521: return "interface Test { <@TF K extends @TA Map, @TG V extends @TC List<@TD List<@TE Object>>> void test(); }"; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TA", type = METHOD_RETURN) jjg@1521: public String useInReturn1() { jjg@1521: return "class Test { @TA T m() { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TA", type = METHOD_RETURN, genericLocation = {3, 0}) jjg@1521: public String useInReturn2() { jjg@1521: return "class Test { Class<@TA T> m() { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_RETURN) jjg@1521: }) jjg@1521: public String useInReturn3() { jjg@1521: return "class Test { @TB T m() { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TA", type = METHOD_FORMAL_PARAMETER, jjg@1521: paramIndex = 0, genericLocation = {3, 0}) jjg@1521: public String useInParam1() { jjg@1521: return "class Test { void m(Class<@TA T> p) { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescription(annotation = "TA", type = METHOD_FORMAL_PARAMETER, jjg@1521: paramIndex = 0, genericLocation = {3, 0}) jjg@1521: public String useInParam2() { jjg@1521: return "class Test { void m(Class<@TA Object> p) { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 1), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, paramIndex = 0, boundIndex = 2), jjg@1521: @TADescription(annotation = "TC", type = METHOD_FORMAL_PARAMETER, paramIndex = 0) jjg@1521: }) jjg@1521: public String useInParam3() { jjg@1521: return "interface IA {} " + jjg@1521: "interface IB {} " + jjg@1521: "interface IC {} " + jjg@1521: "class Test { & @TB IC> void m(@TC T p) { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 1, jjg@1521: genericLocation = {}), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 2, jjg@1521: genericLocation = {}), jjg@1521: @TADescription(annotation = "TC", type = METHOD_FORMAL_PARAMETER, jjg@1521: paramIndex = 0) jjg@1521: }) jjg@1521: public String useInParam4() { jjg@1521: return "class Test {" + jjg@1521: " interface IA {} " + jjg@1521: " interface IB {} " + jjg@1521: " interface IC {} " + jjg@1521: " & @TB IC> void m(@TC T p) { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 0, jjg@1521: genericLocation = {}), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 0, jjg@1521: genericLocation = {1, 0}), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 0, jjg@1521: genericLocation = {1, 0, 3, 0}), jjg@1521: }) jjg@1521: public String useInParam5() { jjg@1521: return "class Test {" + jjg@1521: " interface IA {} " + jjg@1521: " class CB {} " + jjg@1521: " > void m(T p) { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: jjg@1521: @TADescriptions({ jjg@1521: @TADescription(annotation = "TA", type = METHOD_TYPE_PARAMETER, jjg@1521: paramIndex = 0), jjg@1521: @TADescription(annotation = "TB", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 0, jjg@1521: genericLocation = {}), jjg@1521: @TADescription(annotation = "TC", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 0, jjg@1521: genericLocation = {1, 0, 3, 0}), jjg@1521: @TADescription(annotation = "TD", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 1, jjg@1521: genericLocation = {}), jjg@1521: @TADescription(annotation = "TE", type = METHOD_TYPE_PARAMETER_BOUND, jjg@1521: paramIndex = 0, boundIndex = 1, jjg@1521: genericLocation = {3, 0}) jjg@1521: }) jjg@1521: public String useInParam6() { jjg@1521: return "class Test {" + jjg@1521: " interface IA {} " + jjg@1521: " interface IB {} " + jjg@1521: " class CC {} " + jjg@1521: " interface ID {} " + jjg@1521: " <@TA T extends @TB Test.CC<@TC IA> & Test. @TD ID<@TE IA>> void m(T p) { throw new RuntimeException(); } }"; jjg@1521: } jjg@1521: }