langtools/test/tools/javac/MethodParameters/AnnotationTest.java
author jjg
Fri, 12 Aug 2016 17:45:31 -0700
changeset 40316 20b50a99fe8d
parent 30846 2b3f379840f0
child 42407 f3702cff2933
permissions -rw-r--r--
8052398: Uniqify test framework class names Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     1
/*
40316
20b50a99fe8d 8052398: Uniqify test framework class names
jjg
parents: 30846
diff changeset
     2
 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     4
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     8
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    13
 * accompanied this code).
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    14
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    18
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    21
 * questions.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    22
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    23
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    24
/*
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    25
 * @test
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    26
 * @bug 8006582
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    27
 * @summary javac should generate method parameters correctly.
30846
2b3f379840f0 8074432: Move jdeps and javap to jdk.jdeps module
mchung
parents: 30730
diff changeset
    28
 * @modules jdk.jdeps/com.sun.tools.classfile
40316
20b50a99fe8d 8052398: Uniqify test framework class names
jjg
parents: 30846
diff changeset
    29
 * @build MethodParametersTester
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    30
 * @compile -parameters AnnotationTest.java
40316
20b50a99fe8d 8052398: Uniqify test framework class names
jjg
parents: 30846
diff changeset
    31
 * @run main MethodParametersTester AnnotationTest AnnotationTest.out
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    32
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    33
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    34
import java.lang.annotation.*;
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    35
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    36
/** Test that annotations do not interfere with recording of parameter names */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    37
class AnnotationTest {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    38
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    39
    @Repeatable(Annos.class)
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    40
    @interface Anno {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    41
        Class f() default int.class;
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    42
    }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    43
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    44
    @interface Annos { Anno[] value(); String foo() default "hello"; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    45
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    46
    interface I {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    47
        int m(@Anno @Anno int i, @Anno int ji);
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    48
    }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    49
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    50
    public AnnotationTest(@Anno @Anno I i, @Anno int ji) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    51
    public @Anno String foo(@Anno @Anno I i, int ji) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    52
}
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    53
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    54
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    55