1 /*
   2  * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8042451
  27  * @summary Test population of reference info for constructor invocation type argument
  28  * @modules jdk.compiler/com.sun.tools.classfile
  29  * @compile -g Driver.java ReferenceInfoUtil.java ConstructorInvocationTypeArgument.java
  30  * @run main Driver ConstructorInvocationTypeArgument
  31  */
  32 
  33 import static com.sun.tools.classfile.TypeAnnotation.TargetType.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT;
  34 
  35 public class ConstructorInvocationTypeArgument {
  36 
  37     @TADescription(annotation = "TA", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  38             typeIndex = 0, offset = 4)
  39     @TADescription(annotation = "TB", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  40             typeIndex = 0, offset = 0)
  41     public String generic1() {
  42         return "class %TEST_CLASS_NAME% { <T> %TEST_CLASS_NAME%(int i) { new <@TA T>%TEST_CLASS_NAME%(); }" +
  43                 " <T> %TEST_CLASS_NAME%() { <@TB String>this(0); } }";
  44     }
  45 
  46     @TADescription(annotation = "TA", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  47             typeIndex = 0, offset = 0)
  48     public String generic2() {
  49         return "class Super { <T> Super(int i) { } } " +
  50                 "class %TEST_CLASS_NAME% extends Super { <T> %TEST_CLASS_NAME%() { <@TA String>super(0); } }";
  51     }
  52 
  53     @TADescription(annotation = "RTAs", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  54             typeIndex = 0, offset = 4)
  55     @TADescription(annotation = "RTBs", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  56             typeIndex = 0, offset = 0)
  57     public String genericRepeatableAnnotation1() {
  58         return "class %TEST_CLASS_NAME% { <T> %TEST_CLASS_NAME%(int i) { new <@RTA @RTA T>%TEST_CLASS_NAME%(); }" +
  59                 " <T> %TEST_CLASS_NAME%() { <@RTB @RTB String>this(0); } }";
  60     }
  61 
  62     @TADescription(annotation = "RTAs", type = CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT,
  63             typeIndex = 0, offset = 0)
  64     public String genericRepeatableAnnotation2() {
  65         return "class Super { <T> Super(int i) { } } " +
  66                 "class %TEST_CLASS_NAME% extends Super { <T> %TEST_CLASS_NAME%() { <@RTA @RTA String>super(0); } }";
  67     }
  68 }