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