langtools/test/tools/javac/MethodParameters/StaticMethods.java
author mnunez
Thu, 17 Oct 2013 13:27:36 +0200
changeset 21044 ffba9cdeff1a
parent 16307 3027c91f329a
child 22171 71073f4a867e
permissions -rw-r--r--
8015372: Update tests for Method Parameter Reflection API to check whether a parameter is final Reviewed-by: jjg, jfranck
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     1
/*
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
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.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    28
 * @build Tester
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    29
 * @compile -parameters StaticMethods.java
21044
ffba9cdeff1a 8015372: Update tests for Method Parameter Reflection API to check whether a parameter is final
mnunez
parents: 16307
diff changeset
    30
 * @run main Tester StaticMethods StaticMethods.out
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    31
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    32
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    33
public class StaticMethods {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    34
    static public void empty() {}
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    35
    static final void def(Object a, final Object ba, final String... cba) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    36
    static final public void pub(Object d, final Object ed, final String... fed) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    37
    static protected boolean prot(Object g, final Object hg, final String... ihg) { return true; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    38
    static private boolean priv(Object j, final Object kj, final String... lkj) { return true; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    39
    static void def(int a, Object ba, final Object cba, final String... dcba) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    40
    static public void pub(int a, Object ba, final Object cba , final String... dcba) { }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    41
    static final protected boolean prot(int aa, Object baa, final Object cbaa, final String... dcbaa) { return true; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    42
    static final private boolean priv(int abc, Object babc, final Object cbabc, final String... dcbabc) { return true; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    43
}
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    44
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    45
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    46