langtools/test/com/sun/javadoc/testNewLanguageFeatures/TestNewLanguageFeatures.java
author bpatel
Thu, 19 Mar 2009 19:00:54 -0700
changeset 2320 5b8c377175f4
parent 2216 b124d5c924eb
child 5520 86e4b9a9da40
permissions -rw-r--r--
6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
 * have any questions.
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      4789689 4905985 4927164 4827184 4993906 5004549
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary  Run Javadoc on a set of source files that demonstrate new
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 *           language features.  Check the output to ensure that the new
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 *           language features are properly documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 * @author   jamieh
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
 * @library  ../lib/
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 * @build    JavadocTester
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 * @build    TestNewLanguageFeatures
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 * @run main TestNewLanguageFeatures
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
public class TestNewLanguageFeatures extends JavadocTester {
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
    //Test information.
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
    private static final String BUG_ID = "4789689-4905985-4927164-4827184-4993906";
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
    //Javadoc arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
    private static final String[] ARGS = new String[] {
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
        "-d", BUG_ID, "-use", "-source", "1.5", "-sourcepath", SRC_DIR, "pkg", "pkg1", "pkg2"
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
    //Input for string search tests.
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
    private static final String[][] TEST =
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
        {
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
            // ENUM TESTING
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
            //Make sure enum header is correct.
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
            {BUG_ID + FS + "pkg" + FS + "Coin.html", "Enum Coin</H2>"},
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
            //Make sure enum signature is correct.
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
            {BUG_ID + FS + "pkg" + FS + "Coin.html", "public enum "+
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
    57
                "<STRONG>Coin</STRONG>" + NL + "extends java.lang.Enum&lt;" +
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
                "<A HREF=\"../pkg/Coin.html\" title=\"enum in pkg\">Coin</A>&gt;"
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
            //Check for enum constant section
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
    61
            {BUG_ID + FS + "pkg" + FS + "Coin.html", "<CAPTION CLASS=\"TableCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
    62
                     "Enum Constant Summary</CAPTION>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
            //Detail for enum constant
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
            {BUG_ID + FS + "pkg" + FS + "Coin.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
    65
                "<STRONG><A HREF=\"../pkg/Coin.html#Dime\">Dime</A></STRONG>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
            //Automatically insert documentation for values() and valueOf().
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
            {BUG_ID + FS + "pkg" + FS + "Coin.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
                "Returns an array containing the constants of this enum type,"},
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
            {BUG_ID + FS + "pkg" + FS + "Coin.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
                "Returns the enum constant of this type with the specified name"},
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
            {BUG_ID + FS + "pkg" + FS + "Coin.html", "for (Coin c : Coin.values())"},
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
            {BUG_ID + FS + "pkg" + FS + "Coin.html", "Overloaded valueOf() method has correct documentation."},
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
            {BUG_ID + FS + "pkg" + FS + "Coin.html", "Overloaded values method  has correct documentation."},
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
            // TYPE PARAMETER TESTING
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
            //Make sure the header is correct.
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
            {BUG_ID + FS + "pkg" + FS + "TypeParameters.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
                "Class TypeParameters&lt;E&gt;</H2>"},
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
            //Check class type parameters section.
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
            {BUG_ID + FS + "pkg" + FS + "TypeParameters.html",
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
    83
                "<DT><STRONG>Type Parameters:</STRONG></DT><DD><CODE>E</CODE> - " +
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
                "the type parameter for this class."},
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
            //Type parameters in @see/@link
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            {BUG_ID + FS + "pkg" + FS + "TypeParameters.html",
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
    87
                "<DT><STRONG>See Also:</STRONG></DT><DD><A HREF=\"../pkg/TypeParameters.html\" " +
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
    88
                    "title=\"class in pkg\"><CODE>TypeParameters</CODE></A></DD></DL>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
            //Method that uses class type parameter.
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
            {BUG_ID + FS + "pkg" + FS + "TypeParameters.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
                "(<A HREF=\"../pkg/TypeParameters.html\" title=\"type " +
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
                    "parameter in TypeParameters\">E</A>&nbsp;param)"},
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            //Method type parameter section.
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
            {BUG_ID + FS + "pkg" + FS + "TypeParameters.html",
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
    95
                "<STRONG>Type Parameters:</STRONG></DT><DD><CODE>T</CODE> - This is the first " +
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
    96
                    "type parameter.</DD><DD><CODE>V</CODE> - This is the second type " +
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
                    "parameter."},
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
            //Signature of method with type parameters
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
            {BUG_ID + FS + "pkg" + FS + "TypeParameters.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
                "public &lt;T extends java.util.List,V&gt; " +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   101
                    "java.lang.String[] <STRONG>methodThatHasTypeParameters</STRONG>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
            //Wildcard testing.
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
            {BUG_ID + FS + "pkg" + FS + "Wildcards.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
                "<A HREF=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
                "TypeParameters</A>&lt;? super java.lang.String&gt;&nbsp;a"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            {BUG_ID + FS + "pkg" + FS + "Wildcards.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
                "<A HREF=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
                "TypeParameters</A>&lt;? extends java.lang.StringBuffer&gt;&nbsp;b"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
            {BUG_ID + FS + "pkg" + FS + "Wildcards.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
                "<A HREF=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
                    "TypeParameters</A>&nbsp;c"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
            //Bad type parameter warnings.
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
            {WARNING_OUTPUT, "warning - @param argument " +
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
                "\"<BadClassTypeParam>\" is not a type parameter name."},
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
            {WARNING_OUTPUT, "warning - @param argument " +
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
                "\"<BadMethodTypeParam>\" is not a type parameter name."},
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
            //Signature of subclass that has type parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            {BUG_ID + FS + "pkg" + FS + "TypeParameterSubClass.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   120
                "public class <STRONG>TypeParameterSubClass&lt;T extends java.lang.String&gt;" +
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   121
                "</STRONG>" + NL + "extends <A HREF=\"../pkg/TypeParameterSuperClass.html\" " +
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
                "title=\"class in pkg\">TypeParameterSuperClass</A>&lt;T&gt;"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            //Interface generic parameter substitution
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
            //Signature of subclass that has type parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
            {BUG_ID + FS + "pkg" + FS + "TypeParameters.html",
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   127
                "<STRONG>All Implemented Interfaces:</STRONG></DT> <DD><A HREF=\"../pkg/SubInterface.html\" title=\"interface in pkg\">SubInterface</A>&lt;E&gt;, <A HREF=\"../pkg/SuperInterface.html\" title=\"interface in pkg\">SuperInterface</A>&lt;E&gt;</DD>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
            {BUG_ID + FS + "pkg" + FS + "SuperInterface.html",
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   129
                "<STRONG>All Known Subinterfaces:</STRONG></DT> <DD><A HREF=\"../pkg/SubInterface.html\" title=\"interface in pkg\">SubInterface</A>&lt;V&gt;</DD>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
            {BUG_ID + FS + "pkg" + FS + "SubInterface.html",
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   131
                "<STRONG>All Superinterfaces:</STRONG></DT> <DD><A HREF=\"../pkg/SuperInterface.html\" title=\"interface in pkg\">SuperInterface</A>&lt;V&gt;</DD>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
            // VAR ARG TESTING
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
            {BUG_ID + FS + "pkg" + FS + "VarArgs.html", "(int...&nbsp;i)"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
            {BUG_ID + FS + "pkg" + FS + "VarArgs.html", "(int[][]...&nbsp;i)"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
            {BUG_ID + FS + "pkg" + FS + "VarArgs.html", "(int[]...)"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
            {BUG_ID + FS + "pkg" + FS + "VarArgs.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
                "<A HREF=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
                "TypeParameters</A>...&nbsp;t"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
            // ANNOTATION TYPE TESTING
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
            //Make sure the summary links are correct.
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
            {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
                "SUMMARY:&nbsp;<A HREF=\"#annotation_type_required_element_summary\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
                "REQUIRED</A>&nbsp;|&nbsp;<A HREF=\"#annotation_type_optional_element_summary\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
                "OPTIONAL</A>"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
            //Make sure the detail links are correct.
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
            {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
                "DETAIL:&nbsp;<A HREF=\"#annotation_type_element_detail\">ELEMENT</A>"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
            //Make sure the heading is correct.
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
            {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
                "Annotation Type AnnotationType</H2>"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
            //Make sure the signature is correct.
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
            {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   159
                "public @interface <STRONG>AnnotationType</STRONG>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
            //Make sure member summary headings are correct.
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
            {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   162
                "<CAPTION CLASS=\"TableCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   163
                "Required Element Summary</CAPTION>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   165
                "<CAPTION CLASS=\"TableCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   166
                "Optional Element Summary</CAPTION>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
            //Make sure element detail heading is correct
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
            {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
                "Element Detail"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            //Make sure default annotation type value is printed when necessary.
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
            {BUG_ID + FS + "pkg" + FS + "AnnotationType.html",
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   172
                "<STRONG>Default:</STRONG></DT><DD>\"unknown\"</DD>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
            // ANNOTATION TYPE USAGE TESTING
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
            //PACKAGE
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
            {BUG_ID + FS + "pkg" + FS + "package-summary.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
                "<A HREF=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</A>(<A HREF=\"../pkg/AnnotationType.html#optional()\">optional</A>=\"Package Annotation\"," + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
                "                <A HREF=\"../pkg/AnnotationType.html#required()\">required</A>=1994)"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
            //CLASS
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
            {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
                "<FONT SIZE=\"-1\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
                "<A HREF=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</A>(<A HREF=\"../pkg/AnnotationType.html#optional()\">optional</A>=\"Class Annotation\","+NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
                "                <A HREF=\"../pkg/AnnotationType.html#required()\">required</A>=1994)"+NL +
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   188
                "</FONT>public class <STRONG>AnnotationTypeUsage</STRONG>" + NL +
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   189
                "extends java.lang.Object"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
            //FIELD
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
            {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
                "<FONT SIZE=\"-1\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
                "<A HREF=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</A>(<A HREF=\"../pkg/AnnotationType.html#optional()\">optional</A>=\"Field Annotation\","+NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
                "                <A HREF=\"../pkg/AnnotationType.html#required()\">required</A>=1994)"+NL +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   196
                "</FONT>public int <STRONG>field</STRONG>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            //CONSTRUCTOR
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
            {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
                "<FONT SIZE=\"-1\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
                "<A HREF=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</A>(<A HREF=\"../pkg/AnnotationType.html#optional()\">optional</A>=\"Constructor Annotation\","+NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
                "                <A HREF=\"../pkg/AnnotationType.html#required()\">required</A>=1994)"+NL +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   203
                "</FONT>public <STRONG>AnnotationTypeUsage</STRONG>()"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
            //METHOD
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
            {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
                "<FONT SIZE=\"-1\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
                "<A HREF=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</A>(<A HREF=\"../pkg/AnnotationType.html#optional()\">optional</A>=\"Method Annotation\","+NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
                "                <A HREF=\"../pkg/AnnotationType.html#required()\">required</A>=1994)"+NL +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   210
                "</FONT>public void <STRONG>method</STRONG>()"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
            //METHOD PARAMS
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
            {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
                "<PRE>" + NL +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   215
                "public void <STRONG>methodWithParams</STRONG>(<FONT SIZE=\"-1\"><A HREF=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</A>(<A HREF=\"../pkg/AnnotationType.html#optional()\">optional</A>=\"Parameter Annotation\",<A HREF=\"../pkg/AnnotationType.html#required()\">required</A>=1994)</FONT>" + NL +
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
                "                             int&nbsp;documented," + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
                "                             int&nbsp;undocmented)</PRE>"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
            //CONSTRUCTOR PARAMS
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
                "<PRE>" + NL +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   222
                                "public <STRONG>AnnotationTypeUsage</STRONG>(<FONT SIZE=\"-1\"><A HREF=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</A>(<A HREF=\"../pkg/AnnotationType.html#optional()\">optional</A>=\"Constructor Param Annotation\",<A HREF=\"../pkg/AnnotationType.html#required()\">required</A>=1994)</FONT>" + NL +
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
                                "                           int&nbsp;documented," + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
                "                           int&nbsp;undocmented)</PRE>"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
            // ANNOTATION TYPE USAGE TESTING (All Different Types).
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
            //Integer
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
                "<A HREF=\"../pkg1/A.html#d()\">d</A>=3.14,"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
            //Double
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
                "<A HREF=\"../pkg1/A.html#d()\">d</A>=3.14,"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
            //Boolean
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
                "<A HREF=\"../pkg1/A.html#b()\">b</A>=true,"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
            //String
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                "<A HREF=\"../pkg1/A.html#s()\">s</A>=\"sigh\","},
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
            //Class
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
                "<A HREF=\"../pkg1/A.html#c()\">c</A>=<A HREF=\"../pkg2/Foo.html\" title=\"class in pkg2\">Foo.class</A>,"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            //Bounded Class
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
                "<A HREF=\"../pkg1/A.html#w()\">w</A>=<A HREF=\"../pkg/TypeParameterSubClass.html\" title=\"class in pkg\">TypeParameterSubClass.class</A>,"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
            //Enum
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
                "<A HREF=\"../pkg1/A.html#e()\">e</A>=<A HREF=\"../pkg/Coin.html#Penny\">Penny</A>,"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
            //Annotation Type
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
                "<A HREF=\"../pkg1/A.html#a()\">a</A>=<A HREF=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</A>(<A HREF=\"../pkg/AnnotationType.html#optional()\">optional</A>=\"foo\",<A HREF=\"../pkg/AnnotationType.html#required()\">required</A>=1994),"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
            //String Array
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
                "<A HREF=\"../pkg1/A.html#sa()\">sa</A>={\"up\",\"down\"},"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
            //Primitive
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
                "<A HREF=\"../pkg1/A.html#primitiveClassTest()\">primitiveClassTest</A>=boolean.class,"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
            //XXX:  Add array test case after this if fixed:
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
            //5020899: Incorrect internal representation of class-valued annotation elements
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
            //Make sure that annotations are surrounded by <pre> and </pre>
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
            {BUG_ID + FS + "pkg1" + FS + "B.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
                "<PRE><FONT SIZE=\"-1\"><A HREF=\"../pkg1/A.html\" title=\"annotation in pkg1\">@A</A>"},
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
            {BUG_ID + FS + "pkg1" + FS + "B.html",
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   277
                "</FONT>public interface <STRONG>B</STRONG></PRE>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
            //==============================================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
            // Handle multiple bounds.
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
            //==============================================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
            {BUG_ID + FS + "pkg" + FS + "MultiTypeParameters.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   284
                "public &lt;T extends java.lang.Number & java.lang.Runnable&gt; T <STRONG>foo</STRONG>(T&nbsp;t)"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
            //==============================================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
            // Test Class-Use Documenation for Type Parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
            //==============================================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
            //ClassUseTest1: <T extends Foo & Foo2>
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   292
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   293
                     "Classes in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   294
                     "</A> with type parameters of type <A HREF=\"../../pkg2/Foo.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   295
                     "title=\"class in pkg2\">Foo</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   298
                "<TD><CODE><STRONG><A HREF=\"../../pkg2/ClassUseTest1.html\" title=\"class in pkg2\">ClassUseTest1&lt;T extends Foo & Foo2&gt;</A></STRONG></CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   301
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   302
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   303
                     "</A> with type parameters of type <A HREF=\"../../pkg2/Foo.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   304
                     "title=\"class in pkg2\">Foo</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   307
                "<TD><CODE><STRONG>ClassUseTest1.</STRONG><STRONG><A HREF=\"../../pkg2/ClassUseTest1.html#method(T)\">method</A></STRONG>(T&nbsp;t)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   310
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   311
                     "Fields in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   312
                     "</A> with type parameters of type <A HREF=\"../../pkg2/Foo.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   313
                     "title=\"class in pkg2\">Foo</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
                "<A HREF=\"../../pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest</A>&lt;<A HREF=\"../../pkg2/Foo.html\" title=\"class in pkg2\">Foo</A>&gt;</CODE></FONT></TD>"
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   320
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   321
                     "Fields in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   322
                     "</A> declared as <A HREF=\"../../pkg2/ParamTest.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   323
                     "title=\"class in pkg2\">ParamTest</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
                "<A HREF=\"../../pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest</A>&lt;<A HREF=\"../../pkg2/Foo.html\" title=\"class in pkg2\">Foo</A>&gt;</CODE></FONT></TD>"
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
           {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   330
                    "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   331
                    "Classes in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   332
                    "</A> with type parameters of type <A HREF=\"../../pkg2/Foo2.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   333
                    "title=\"interface in pkg2\">Foo2</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
           },
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
           {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   336
            "<TD><CODE><STRONG><A HREF=\"../../pkg2/ClassUseTest1.html\" title=\"class in pkg2\">ClassUseTest1&lt;T extends Foo & Foo2&gt;</A></STRONG></CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
           },
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
           {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   339
                    "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   340
                    "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   341
                    "</A> with type parameters of type <A HREF=\"../../pkg2/Foo2.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   342
                    "title=\"interface in pkg2\">Foo2</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   345
               "<TD><CODE><STRONG>ClassUseTest1.</STRONG><STRONG><A HREF=\"../../pkg2/ClassUseTest1.html#method(T)\">method</A></STRONG>(T&nbsp;t)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
            //ClassUseTest2: <T extends ParamTest<Foo3>>
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   350
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   351
                     "Classes in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   352
                     "</A> with type parameters of type <A HREF=\"../../pkg2/ParamTest.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   353
                     "title=\"class in pkg2\">ParamTest</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   356
              "<TD><CODE><STRONG><A HREF=\"../../pkg2/ClassUseTest2.html\" title=\"class in pkg2\">ClassUseTest2&lt;T extends ParamTest&lt;<A HREF=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">Foo3</A>&gt;&gt;</A></STRONG></CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   359
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   360
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   361
                     "</A> with type parameters of type <A HREF=\"../../pkg2/ParamTest.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   362
                     "title=\"class in pkg2\">ParamTest</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   365
              "<TD><CODE><STRONG>ClassUseTest2.</STRONG><STRONG><A HREF=\"../../pkg2/ClassUseTest2.html#method(T)\">method</A></STRONG>(T&nbsp;t)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   368
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   369
                     "Fields in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   370
                     "</A> declared as <A HREF=\"../../pkg2/ParamTest.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   371
                     "title=\"class in pkg2\">ParamTest</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
              "<A HREF=\"../../pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest</A>&lt;<A HREF=\"../../pkg2/Foo.html\" title=\"class in pkg2\">Foo</A>&gt;</CODE></FONT></TD>"
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   377
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   378
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   379
                     "</A> with type parameters of type <A HREF=\"../../pkg2/ParamTest.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   380
                     "title=\"class in pkg2\">ParamTest</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
              "&lt;T extends <A HREF=\"../../pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest</A>&lt;<A HREF=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">Foo3</A>&gt;&gt;"
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   387
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   388
                     "Classes in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   389
                     "</A> with type parameters of type <A HREF=\"../../pkg2/Foo3.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   390
                     "title=\"class in pkg2\">Foo3</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   393
                "<TD><CODE><STRONG><A HREF=\"../../pkg2/ClassUseTest2.html\" title=\"class in pkg2\">ClassUseTest2&lt;T extends ParamTest&lt;<A HREF=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">Foo3</A>&gt;&gt;</A></STRONG></CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   396
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   397
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   398
                     "</A> with type parameters of type <A HREF=\"../../pkg2/Foo3.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   399
                     "title=\"class in pkg2\">Foo3</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   402
                "<TD><CODE><STRONG>ClassUseTest2.</STRONG><STRONG><A HREF=\"../../pkg2/ClassUseTest2.html#method(T)\">method</A></STRONG>(T&nbsp;t)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   405
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   406
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   407
                     "</A> that return types with arguments of type " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   408
                     "<A HREF=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   409
                     "Foo3</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
                "&lt;T extends <A HREF=\"../../pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest</A>&lt;<A HREF=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">Foo3</A>&gt;&gt;"
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
            //ClassUseTest3: <T extends ParamTest2<List<? extends Foo4>>>
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   417
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   418
                     "Classes in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   419
                     "</A> with type parameters of type " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   420
                     "<A HREF=\"../../pkg2/ParamTest2.html\" title=\"class in pkg2\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   421
                     "ParamTest2</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   424
                "<TD><CODE><STRONG><A HREF=\"../../pkg2/ClassUseTest3.html\" title=\"class in pkg2\">ClassUseTest3&lt;T extends ParamTest2&lt;java.util.List&lt;? extends Foo4&gt;&gt;&gt;</A></STRONG></CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   427
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   428
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   429
                     "</A> with type parameters of type " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   430
                     "<A HREF=\"../../pkg2/ParamTest2.html\" title=\"class in pkg2\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   431
                     "ParamTest2</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   434
                "<TD><CODE><STRONG>ClassUseTest3.</STRONG><STRONG><A HREF=\"../../pkg2/ClassUseTest3.html#method(T)\">method</A></STRONG>(T&nbsp;t)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   437
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   438
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   439
                     "</A> with type parameters of type " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   440
                     "<A HREF=\"../../pkg2/ParamTest2.html\" title=\"class in pkg2\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   441
                     "ParamTest2</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
                "&lt;T extends <A HREF=\"../../pkg2/ParamTest2.html\" title=\"class in pkg2\">ParamTest2</A>&lt;java.util.List&lt;? extends <A HREF=\"../../pkg2/Foo4.html\" title=\"class in pkg2\">Foo4</A>&gt;&gt;&gt;"
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   448
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   449
                     "Classes in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   450
                     "</A> with type parameters of type " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   451
                     "<A HREF=\"../../pkg2/Foo4.html\" title=\"class in pkg2\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   452
                     "Foo4</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   455
                "<TD><CODE><STRONG><A HREF=\"../../pkg2/ClassUseTest3.html\" title=\"class in pkg2\">ClassUseTest3&lt;T extends ParamTest2&lt;java.util.List&lt;? extends Foo4&gt;&gt;&gt;</A></STRONG></CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   458
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   459
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   460
                     "</A> with type parameters of type <A HREF=\"../../pkg2/Foo4.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   461
                     "title=\"class in pkg2\">Foo4</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   464
                "<TD><CODE><STRONG>ClassUseTest3.</STRONG><STRONG><A HREF=\"../../pkg2/ClassUseTest3.html#method(T)\">method</A></STRONG>(T&nbsp;t)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   467
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   468
                     "Methods in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   469
                     "</A> that return types with arguments of type " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   470
                     "<A HREF=\"../../pkg2/Foo4.html\" title=\"class in pkg2\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   471
                     "Foo4</A></CAPTION>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
                "&lt;T extends <A HREF=\"../../pkg2/ParamTest2.html\" title=\"class in pkg2\">ParamTest2</A>&lt;java.util.List&lt;? extends <A HREF=\"../../pkg2/Foo4.html\" title=\"class in pkg2\">Foo4</A>&gt;&gt;&gt;"
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
            //Type parameters in constructor and method args
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   479
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   480
                     "Method parameters in <A HREF=\"../../pkg2/package-summary.html\">pkg2" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   481
                     "</A> with type arguments of type <A HREF=\"../../pkg2/Foo4.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   482
                     "title=\"class in pkg2\">Foo4</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   483
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   484
                     " NOWRAP>Modifier and Type" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   485
                     "</TH>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   486
                     " NOWRAP>Method and Description</TH>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   487
                     "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   488
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   489
                     "<TD ALIGN=\"right\" VALIGN=\"top\" WIDTH=\"1%\"><FONT SIZE=\"-1\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   490
                     "<CODE>&nbsp;void</CODE></FONT></TD>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   491
                     "<TD><CODE><STRONG>ClassUseTest3.</STRONG><STRONG>" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   492
                     "<A HREF=\"../../pkg2/ClassUseTest3.html#method(java.util.Set)\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   493
                     "method</A></STRONG>(java.util.Set&lt;<A HREF=\"../../pkg2/Foo4.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   494
                     "title=\"class in pkg2\">Foo4</A>&gt;&nbsp;p)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
            {BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   497
                     "<CAPTION CLASS=\"TableSubCaption\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   498
                     "Constructor parameters in <A HREF=\"../../pkg2/package-summary.html\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   499
                     "pkg2</A> with type arguments of type <A HREF=\"../../pkg2/Foo4.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   500
                     "title=\"class in pkg2\">Foo4</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   501
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   502
                     " NOWRAP>Constructor and Description" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   503
                     "</TH>" + NL + "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   504
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   505
                     "<TD><CODE><STRONG><A HREF=\"../../pkg2/ClassUseTest3.html#ClassUseTest3" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   506
                     "(java.util.Set)\">ClassUseTest3</A></STRONG>(java.util.Set&lt;" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   507
                     "<A HREF=\"../../pkg2/Foo4.html\" title=\"class in pkg2\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   508
                     "Foo4</A>&gt;&nbsp;p)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
            // Annotatation Type Usage
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
            {BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   515
                     "Packages with annotations of type " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   516
                     "<A HREF=\"../../pkg/AnnotationType.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   517
                     "title=\"annotation in pkg\">AnnotationType</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   518
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   519
                     " NOWRAP>Package" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   520
                     "</TH>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   521
                     " NOWRAP>Description</TH>" + NL + "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   522
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   523
                     "<TD><A HREF=\"../../pkg/package-summary.html\"><STRONG>pkg" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   524
                     "</STRONG></A></TD>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
            {BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   528
                     "Classes in <A HREF=\"../../pkg/package-summary.html\">pkg" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   529
                     "</A> with annotations of type <A HREF=\"../../pkg/AnnotationType.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   530
                     "title=\"annotation in pkg\">AnnotationType</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   531
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   532
                     " NOWRAP>Modifier and Type" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   533
                     "</TH>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   534
                     " NOWRAP>Class and Description</TH>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   535
                     "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   536
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   537
                     "<TD ALIGN=\"right\" VALIGN=\"top\" WIDTH=\"1%\"><FONT SIZE=\"-1\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   538
                     "<CODE>&nbsp;class</CODE></FONT></TD>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   539
                     "<TD><CODE><STRONG><A HREF=\"../../pkg/AnnotationTypeUsage.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   540
                     "title=\"class in pkg\">AnnotationTypeUsage</A></STRONG></CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
            {BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   544
                     "Fields in <A HREF=\"../../pkg/package-summary.html\">pkg" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   545
                     "</A> with annotations of type <A HREF=\"../../pkg/AnnotationType.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   546
                     "title=\"annotation in pkg\">AnnotationType</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   547
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   548
                     " NOWRAP>Modifier and Type" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   549
                     "</TH>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   550
                     " NOWRAP>Field and Description</TH>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   551
                     "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   552
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   553
                     "<TD ALIGN=\"right\" VALIGN=\"top\" WIDTH=\"1%\"><FONT SIZE=\"-1\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   554
                     "<CODE>&nbsp;int</CODE></FONT></TD>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   555
                     "<TD><CODE><STRONG>AnnotationTypeUsage.</STRONG><STRONG>" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   556
                     "<A HREF=\"../../pkg/AnnotationTypeUsage.html#field\">field" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   557
                     "</A></STRONG></CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
            {BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   561
                     "Methods in <A HREF=\"../../pkg/package-summary.html\">pkg" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   562
                     "</A> with annotations of type <A HREF=\"../../pkg/AnnotationType.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   563
                     "title=\"annotation in pkg\">AnnotationType</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   564
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   565
                     " NOWRAP>Modifier and Type" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   566
                     "</TH>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   567
                     " NOWRAP>Method and Description</TH>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   568
                     "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   569
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   570
                     "<TD ALIGN=\"right\" VALIGN=\"top\" WIDTH=\"1%\"><FONT SIZE=\"-1\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   571
                     "<CODE>&nbsp;void</CODE></FONT></TD>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   572
                     "<TD><CODE><STRONG>AnnotationTypeUsage.</STRONG><STRONG>" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   573
                     "<A HREF=\"../../pkg/AnnotationTypeUsage.html#method()\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   574
                     "method</A></STRONG>()</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
            {BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   578
                     "Method parameters in <A HREF=\"../../pkg/package-summary.html\">pkg" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   579
                     "</A> with annotations of type <A HREF=\"../../pkg/AnnotationType.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   580
                     "title=\"annotation in pkg\">AnnotationType</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   581
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   582
                     " NOWRAP>Modifier and Type" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   583
                     "</TH>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   584
                     " NOWRAP>Method and Description</TH>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   585
                     "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   586
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   587
                     "<TD ALIGN=\"right\" VALIGN=\"top\" WIDTH=\"1%\"><FONT SIZE=\"-1\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   588
                     "<CODE>&nbsp;void</CODE></FONT></TD>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   589
                     "<TD><CODE><STRONG>AnnotationTypeUsage.</STRONG><STRONG>" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   590
                     "<A HREF=\"../../pkg/AnnotationTypeUsage.html#methodWithParams" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   591
                     "(int, int)\">methodWithParams</A></STRONG>(int&nbsp;documented," + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   592
                     "                 int&nbsp;undocmented)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
            {BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   596
                     "Constructors in <A HREF=\"../../pkg/package-summary.html\">pkg" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   597
                     "</A> with annotations of type <A HREF=\"../../pkg/AnnotationType.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   598
                     "title=\"annotation in pkg\">AnnotationType</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   599
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   600
                     " NOWRAP>Constructor and Description" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   601
                     "</TH>" + NL + "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   602
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   603
                     "<TD><CODE><STRONG><A HREF=\"../../pkg/" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   604
                     "AnnotationTypeUsage.html#AnnotationTypeUsage()\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   605
                     "AnnotationTypeUsage</A></STRONG>()</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
            {BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html",
2320
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   609
                     "Constructor parameters in <A HREF=\"../../pkg/package-summary.html\">pkg" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   610
                     "</A> with annotations of type <A HREF=\"../../pkg/AnnotationType.html\" " +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   611
                     "title=\"annotation in pkg\">AnnotationType</A></CAPTION>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   612
                     "<TR>" + NL + "<TH CLASS=\"TableHeader\" SCOPE=\"col\"" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   613
                     " NOWRAP>Constructor and Description" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   614
                     "</TH>" + NL + "</TR>" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   615
                     "<TR BGCOLOR=\"white\" CLASS=\"TableRowColor\">" + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   616
                     "<TD><CODE><STRONG><A HREF=\"../../pkg/" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   617
                     "AnnotationTypeUsage.html#AnnotationTypeUsage(int, int)\">" +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   618
                     "AnnotationTypeUsage</A></STRONG>(int&nbsp;documented," + NL +
5b8c377175f4 6786688: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Table must have captions and headers
bpatel
parents: 2216
diff changeset
   619
                     "                    int&nbsp;undocmented)</CODE>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
            // TYPE PARAMETER IN INDEX
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
            {BUG_ID + FS + "index-all.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   626
                "<A HREF=\"./pkg2/Foo.html#method(java.util.Vector)\"><STRONG>method(Vector&lt;Object&gt;)</STRONG></A>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
            // TYPE PARAMETER IN INDEX
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
            //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
            {BUG_ID + FS + "index-all.html",
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   632
                "<A HREF=\"./pkg2/Foo.html#method(java.util.Vector)\"><STRONG>method(Vector&lt;Object&gt;)</STRONG></A>"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
            },
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
    private static final String[][] NEGATED_TEST = {
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
        //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
        // ENUM TESTING
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
        //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
        //NO constructor section
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   640
        {BUG_ID + FS + "pkg" + FS + "Coin.html", "<STRONG>Constructor Summary</STRONG>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
        //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
        // TYPE PARAMETER TESTING
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
        //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
        //No type parameters in class frame.
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
        {BUG_ID + FS + "allclasses-frame.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
            "<A HREF=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" +
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
                    "TypeParameters</A>&lt;<A HREF=\"../pkg/TypeParameters.html\" " +
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
                    "title=\"type parameter in TypeParameters\">E</A>&gt;"
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
        //==============================================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
        // ANNOTATION TYPE USAGE TESTING (When @Documented is omitted)
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
        //===============================================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
        //CLASS
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
        {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
            "<FONT SIZE=\"-1\">" + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
            "<A HREF=\"../pkg/AnnotationTypeUndocumented.html\" title=\"annotation in pkg\">@AnnotationTypeUndocumented</A>(<A HREF=\"../pkg/AnnotationType.html#optional\">optional</A>=\"Class Annotation\"," + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
            "                <A HREF=\"../pkg/AnnotationType.html#required\">required</A>=1994)" + NL +
2216
b124d5c924eb 6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents: 1787
diff changeset
   660
            "</FONT>public class <STRONG>AnnotationTypeUsage</STRONG></DT><DT>extends java.lang.Object</DT></DL>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
        //FIELD
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
        {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
            "<FONT SIZE=\"-1\">" + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
            "<A HREF=\"../pkg/AnnotationTypeUndocumented.html\" title=\"annotation in pkg\">@AnnotationTypeUndocumented</A>(<A HREF=\"../pkg/AnnotationType.html#optional\">optional</A>=\"Field Annotation\"," + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
            "                <A HREF=\"../pkg/AnnotationType.html#required\">required</A>=1994)" + NL +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   667
            "</FONT>public int <STRONG>field</STRONG>"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
        //CONSTRUCTOR
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
        {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
            "<FONT SIZE=\"-1\">" + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
            "<A HREF=\"../pkg/AnnotationTypeUndocumented.html\" title=\"annotation in pkg\">@AnnotationTypeUndocumented</A>(<A HREF=\"../pkg/AnnotationType.html#optional\">optional</A>=\"Constructor Annotation\"," + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
            "                <A HREF=\"../pkg/AnnotationType.html#required\">required</A>=1994)" + NL +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   674
            "</FONT>public <STRONG>AnnotationTypeUsage</STRONG>()"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
        //METHOD
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
        {BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html",
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
            "<FONT SIZE=\"-1\">" + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
            "<A HREF=\"../pkg/AnnotationTypeUndocumented.html\" title=\"annotation in pkg\">@AnnotationTypeUndocumented</A>(<A HREF=\"../pkg/AnnotationType.html#optional\">optional</A>=\"Method Annotation\"," + NL +
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
            "                <A HREF=\"../pkg/AnnotationType.html#required\">required</A>=1994)" + NL +
1787
1aa079321cd2 6786028: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - Bold tags should be strong
bpatel
parents: 10
diff changeset
   681
            "</FONT>public void <STRONG>method</STRONG>()"},
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
        //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
        // Make sure annotation types do not
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
        // trigger this warning.
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
        //=================================
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
        {WARNING_OUTPUT,
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
            "Internal error: package sets don't match: [] with: null"
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
        },
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
     * The entry point of the test.
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
     * @param args the array of command line arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
    public static void main(String[] args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
        TestNewLanguageFeatures tester = new TestNewLanguageFeatures();
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
        run(tester, ARGS, TEST, NEGATED_TEST);
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
        tester.printSummary();
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
    public String getBugId() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   706
        return BUG_ID;
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
06bc494ca11e Initial load
duke
parents:
diff changeset
   709
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
    public String getBugName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
        return getClass().getName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
}