langtools/test/tools/javac/processing/model/element/repeatingAnnotations/MixRepeatableAndOfficialContainerInheritedA2Test.java
author akulyakh
Thu, 21 May 2015 11:41:04 -0700
changeset 30730 d3ce7619db2c
parent 15715 0633054b777a
child 40231 ba38ad2dd137
permissions -rw-r--r--
8076543: Add @modules as needed to the langtools tests Reviewed-by: jjg, shurailine
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15715
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
     1
/*
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 15715
diff changeset
     2
 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
15715
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
     4
 *
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
     7
 * published by the Free Software Foundation.
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
     8
 *
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    13
 * accompanied this code).
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    14
 *
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    18
 *
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    21
 * questions.
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    22
 */
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    23
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    24
/*
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    25
 * @test
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    26
 * @bug     8004822
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    27
 * @author  mnunez
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    28
 * @summary Language model api test basics for repeating annotations
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    29
 * @library /tools/javac/lib
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    30
 * @library supportingAnnotations
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 15715
diff changeset
    31
 * @modules java.compiler
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 15715
diff changeset
    32
 *          jdk.compiler
15715
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    33
 * @build   JavacTestingAbstractProcessor ElementRepAnnoTester
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    34
 * @compile -processor ElementRepAnnoTester -proc:only
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    35
 * MixRepeatableAndOfficialContainerInheritedA2Test.java
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    36
 */
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    37
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    38
@BarInherited(value = 0)
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    39
class N {}
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    40
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    41
@ExpectedBase(
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    42
        value = BarInherited.class,
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    43
        getAnnotation = "@BarInherited(value=3)",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    44
        getAnnotationsByType = {
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    45
            "@BarInherited(value=1)",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    46
            "@BarInherited(value=2)",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    47
            "@BarInherited(value=3)"
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    48
        },
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    49
        getAllAnnotationMirrors = {
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    50
            "@BarInherited(3)",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    51
            "@BarInheritedContainer({@BarInherited(1), @BarInherited(2)})",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    52
            "ExpectedBase",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    53
            "ExpectedContainer"
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    54
        },
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    55
        getAnnotationMirrors = {
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    56
            "@BarInherited(3)",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    57
            "@BarInheritedContainer({@BarInherited(1), @BarInherited(2)})",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    58
            "ExpectedBase",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    59
            "ExpectedContainer"
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    60
        })
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    61
@ExpectedContainer(
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    62
        value = BarInheritedContainer.class,
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    63
        getAnnotation = "@BarInheritedContainer("
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    64
        + "value=[@BarInherited(value=1), @BarInherited(value=2)])",
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    65
        getAnnotationsByType = {"@BarInheritedContainer("
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    66
                + "value=[@BarInherited(value=1), @BarInherited(value=2)])"})
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    67
@BarInheritedContainer(value = {@BarInherited(value = 1), @BarInherited(value = 2)})
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    68
@BarInherited(value = 3)
0633054b777a 8004822: RFE to write language model API tests for repeating annotations based on the spec updates
jfranck
parents:
diff changeset
    69
class MixRepeatableAndOfficialContainerInheritedA2Test extends N {}