test/langtools/jdk/javadoc/doclet/testInterface/pkg/ClassWithStaticMembers.java
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 47311 ff631a3cadbc
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42417
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
     1
/*
47311
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
     2
 * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
42417
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
     4
 *
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
     7
 * published by the Free Software Foundation.
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
     8
 *
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    13
 * accompanied this code).
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    14
 *
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    18
 *
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    21
 * questions.
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    22
 */
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    23
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    24
package pkg;
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    25
47311
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    26
public class ClassWithStaticMembers implements InterfaceWithStaticMembers {
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    27
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    28
    /** A hider inner class */
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    29
    public static class InnerClass{}
42417
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    30
47311
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    31
    /** A hider field */
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    32
    public static int f = 1;
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    33
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    34
    /** A hider method */
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    35
    public static void m(){}
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    36
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    37
    // no comment
ff631a3cadbc 8186703: javadoc needs a test to verify member hiding
ksrini
parents: 47216
diff changeset
    38
    public static void staticMethod() {}
42417
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    39
8e1573096052 8139101: javadoc emits "specified by" clause when class has a method that matches a static interface method
bpatel
parents:
diff changeset
    40
}