langtools/test/com/sun/javadoc/testPrivateClasses/TestPrivateClasses.java
author dcubed
Sun, 17 Mar 2013 08:57:56 -0700
changeset 16355 f4d5aba63f4e
parent 7681 1f0819a3341f
child 18651 439898801aa4
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
7681
1f0819a3341f 6962318: Update copyright year
ohair
parents: 7614
diff changeset
     2
 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2216
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2216
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2216
diff changeset
    21
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 * @bug      4780441 4874845 4978816
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary  Make sure that when the -private flag is not used, members
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 *           inherited from package private class are documented in the child.
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 *           Make sure that when a method inherits documentation from a method
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
 *           in a non-public class/interface, the non-public class/interface
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 *           is not mentioned anywhere (not even in the signature or tree).
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 *           Make sure that when a private interface method with generic parameters
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 *           is implemented, the comments can be inherited properly.
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * @author   jamieh
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * @library  ../lib/
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * @build    JavadocTester
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * @build    TestPrivateClasses
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * @run main TestPrivateClasses
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
public class TestPrivateClasses extends JavadocTester {
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    //Test information.
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
    private static final String BUG_ID = "4780441-4874845-4978816";
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    //Javadoc arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    private static final String[] ARGS1 = new String[] {
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
        "-d", BUG_ID + "-1", "-sourcepath", SRC_DIR, "-source", "1.5", "pkg", "pkg2"
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    private static final String[] ARGS2 = new String[] {
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        "-d", BUG_ID + "-2", "-sourcepath", SRC_DIR, "-private",
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
            "-source", "1.5", "pkg", "pkg2"
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    // Test output when -private flag is not used.
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    private static final String[][] TEST1 = {
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
        // Field inheritence from non-public superclass.
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
        {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    61
            "<a href=\"../pkg/PublicChild.html#fieldInheritedFromParent\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    62
                "fieldInheritedFromParent</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        // Method inheritence from non-public superclass.
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    67
            "<a href=\"../pkg/PublicChild.html#methodInheritedFromParent(int)\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    68
                "methodInheritedFromParent</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        // Field inheritence from non-public superinterface.
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
        {BUG_ID + "-1" + FS + "pkg" + FS + "PublicInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    73
            "<a href=\"../pkg/PublicInterface.html#fieldInheritedFromInterface\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    74
                "fieldInheritedFromInterface</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
        // Method inheritence from non-public superinterface.
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
        {BUG_ID + "-1" + FS + "pkg" + FS + "PublicInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    79
            "<a href=\"../pkg/PublicInterface.html#methodInterface(int)\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    80
                "methodInterface</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
        // private class does not show up in tree
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
        {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    85
            "<ul class=\"inheritance\">" + NL + "<li>java.lang.Object</li>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    86
            "<li>" + NL + "<ul class=\"inheritance\">" + NL + "<li>pkg.PublicChild</li>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    87
            "</ul>" + NL + "</li>" + NL + "</ul>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        // Method is documented as though it is declared in the inheriting method.
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
        {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    92
            "<pre>public&nbsp;void&nbsp;methodInheritedFromParent(int&nbsp;p1)"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        //Make sure implemented interfaces from private superclass are inherited
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
        {BUG_ID + "-1" + FS + "pkg" + FS + "PublicInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    97
            "<dl>" + NL + "<dt>All Known Implementing Classes:</dt>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    98
            "<dd><a href=\"../pkg/PublicChild.html\" title=\"class in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
    99
            "PublicChild</a></dd>" + NL + "</dl>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   102
            "<dl>" + NL + "<dt>All Implemented Interfaces:</dt>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   103
            "<dd><a href=\"../pkg/PublicInterface.html\" title=\"interface in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   104
            "PublicInterface</a></dd>" + NL + "</dl>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
        //Generic interface method test.
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
        {BUG_ID + "-1" + FS + "pkg2" + FS + "C.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
            "This comment should get copied to the implementing class"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    private static final String[][] NEGATED_TEST1 = {
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
       // Should not document that a method overrides method from private class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   113
        "<strong>Overrides:</strong>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
      // Should not document that a method specified by private interface.
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   116
        "<strong>Specified by:</strong>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   118
        "<strong>Specified by:</strong>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
      // Should not mention that any documentation was copied.
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        "Description copied from"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicInterface.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        "Description copied from"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
      // Don't extend private classes or interfaces
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        "PrivateParent"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicInterface.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        "PrivateInterface"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicChild.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        "PrivateInterface"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
      {BUG_ID + "-1" + FS + "pkg" + FS + "PublicInterface.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        "All Superinterfaces"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
      // Make inherited constant are documented correctly.
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
      {BUG_ID + "-1" + FS + "constant-values.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        "PrivateInterface"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
        //Do not inherit private interface method with generic parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        //This method has been implemented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
        {BUG_ID + "-1" + FS + "pkg2" + FS + "C.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   140
            "<strong><a href=\"../pkg2/I.html#hello(T)\">hello</a></strong>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    // Test output when -private flag is used.
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    private static final String[][] TEST2 = {
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
        // Field inheritence from non-public superclass.
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
        {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   147
            "Fields inherited from class&nbsp;pkg." +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   148
            "<a href=\"../pkg/PrivateParent.html\" title=\"class in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   149
            "PrivateParent</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   152
            "<a href=\"../pkg/PrivateParent.html#fieldInheritedFromParent\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   153
                "fieldInheritedFromParent</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        // Field inheritence from non-public superinterface.
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        {BUG_ID + "-2" + FS + "pkg" + FS + "PublicInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   157
            "Fields inherited from interface&nbsp;pkg." +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   158
            "<a href=\"../pkg/PrivateInterface.html\" title=\"interface in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   159
            "PrivateInterface</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
        {BUG_ID + "-2" + FS + "pkg" + FS + "PublicInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   162
            "<a href=\"../pkg/PrivateInterface.html#fieldInheritedFromInterface\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   163
                "fieldInheritedFromInterface</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
        // Method inheritence from non-public superclass.
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
        {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   167
            "Methods inherited from class&nbsp;pkg." +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   168
            "<a href=\"../pkg/PrivateParent.html\" title=\"class in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   169
            "PrivateParent</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
        {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   172
            "<a href=\"../pkg/PrivateParent.html#methodInheritedFromParent(int)\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   173
                "methodInheritedFromParent</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        // Should document that a method overrides method from private class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
       {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   177
            "<dt><strong>Overrides:</strong></dt>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   178
            "<dd><code><a href=\"../pkg/PrivateParent.html#methodOverridenFromParent(char[], int, T, V, java.util.List)\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   179
            "methodOverridenFromParent</a></code>&nbsp;in class&nbsp;<code>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   180
            "<a href=\"../pkg/PrivateParent.html\" title=\"class in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   181
            "PrivateParent</a></code></dd>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
       // Should document that a method is specified by private interface.
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
       {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   184
            "<dt><strong>Specified by:</strong></dt>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   185
            "<dd><code><a href=\"../pkg/PrivateInterface.html#methodInterface(int)\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   186
            "methodInterface</a></code>&nbsp;in interface&nbsp;<code>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   187
            "<a href=\"../pkg/PrivateInterface.html\" title=\"interface in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   188
            "PrivateInterface</a></code></dd>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
       // Method inheritence from non-public superinterface.
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
       {BUG_ID + "-2" + FS + "pkg" + FS + "PublicInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   191
            "Methods inherited from interface&nbsp;pkg." +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   192
            "<a href=\"../pkg/PrivateInterface.html\" title=\"interface in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   193
            "PrivateInterface</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        {BUG_ID + "-2" + FS + "pkg" + FS + "PrivateInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   196
            "<a href=\"../pkg/PrivateInterface.html#methodInterface(int)\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   197
                "methodInterface</a>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
      // Should mention that any documentation was copied.
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
      {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
        "Description copied from"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
      // Extend documented private classes or interfaces
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
      {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
        "extends"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
      {BUG_ID + "-2" + FS + "pkg" + FS + "PublicInterface.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
        "extends"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
      {BUG_ID + "-2" + FS + "pkg" + FS + "PublicInterface.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        "All Superinterfaces"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
      //Make sure implemented interfaces from private superclass are inherited
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
      {BUG_ID + "-2" + FS + "pkg" + FS + "PublicInterface.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   212
        "<dl>" + NL + "<dt>All Known Implementing Classes:</dt>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   213
        "<dd><a href=\"../pkg/PrivateParent.html\" title=\"class in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   214
        "PrivateParent</a>, " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   215
        "<a href=\"../pkg/PublicChild.html\" title=\"class in pkg\">PublicChild" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   216
        "</a></dd>" + NL + "</dl>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
      {BUG_ID + "-2" + FS + "pkg" + FS + "PublicChild.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   219
        "<dl>" + NL + "<dt>All Implemented Interfaces:</dt>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   220
        "<dd><a href=\"../pkg/PrivateInterface.html\" title=\"interface in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   221
        "PrivateInterface</a>, " +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   222
        "<a href=\"../pkg/PublicInterface.html\" title=\"interface in pkg\">" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   223
        "PublicInterface</a></dd>" + NL + "</dl>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
      //Since private flag is used, we can document that private interface method
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
      //with generic parameters has been implemented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
      {BUG_ID + "-2" + FS + "pkg2" + FS + "C.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   228
            "<strong>Description copied from interface:&nbsp;<code>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   229
            "<a href=\"../pkg2/I.html#hello(T)\">I</a></code></strong>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
      {BUG_ID + "-2" + FS + "pkg2" + FS + "C.html",
7614
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   232
            "<dt><strong>Specified by:</strong></dt>" + NL +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   233
            "<dd><code><a href=\"../pkg2/I.html#hello(T)\">hello</a></code>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   234
            "&nbsp;in interface&nbsp;<code>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   235
            "<a href=\"../pkg2/I.html\" title=\"interface in pkg2\">I</a>" +
cfadc977ca75 6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents: 5520
diff changeset
   236
            "&lt;java.lang.String&gt;</code></dd>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
    private static final String[][] NEGATED_TEST2 = NO_TEST;
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
     * The entry point of the test.
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
     * @param args the array of command line arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
    public static void main(String[] args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        TestPrivateClasses tester = new TestPrivateClasses();
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
        run(tester, ARGS1, TEST1, NEGATED_TEST1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
        run(tester, ARGS2, TEST2, NEGATED_TEST2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
        tester.printSummary();
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
    public String getBugId() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
        return BUG_ID;
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    public String getBugName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
        return getClass().getName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
}