author | jjg |
Thu, 10 Jan 2013 19:38:57 -0800 | |
changeset 15354 | 52a04c670c05 |
parent 14357 | faf9cde2817b |
child 17559 | 87c28ee29329 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
15354 | 2 |
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. |
10 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5520 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
10 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
26 |
* @bug 4789689 4905985 4927164 4827184 4993906 5004549 7025314 7010344 |
10 | 27 |
* @summary Run Javadoc on a set of source files that demonstrate new |
28 |
* language features. Check the output to ensure that the new |
|
29 |
* language features are properly documented. |
|
30 |
* @author jamieh |
|
31 |
* @library ../lib/ |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
32 |
* @build JavadocTester TestNewLanguageFeatures |
10 | 33 |
* @run main TestNewLanguageFeatures |
34 |
*/ |
|
35 |
||
36 |
public class TestNewLanguageFeatures extends JavadocTester { |
|
37 |
||
38 |
//Test information. |
|
39 |
private static final String BUG_ID = "4789689-4905985-4927164-4827184-4993906"; |
|
40 |
||
41 |
//Javadoc arguments. |
|
42 |
private static final String[] ARGS = new String[] { |
|
15354 | 43 |
"-Xdoclint:none", "-d", BUG_ID, "-use", "-source", "1.5", "-sourcepath", SRC_DIR, "pkg", "pkg1", "pkg2" |
10 | 44 |
}; |
45 |
||
46 |
//Input for string search tests. |
|
47 |
private static final String[][] TEST = |
|
48 |
{ |
|
49 |
//================================= |
|
50 |
// ENUM TESTING |
|
51 |
//================================= |
|
52 |
//Make sure enum header is correct. |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
53 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", "Enum Coin</h2>"}, |
10 | 54 |
//Make sure enum signature is correct. |
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
55 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", "<pre>public enum " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
56 |
"<span class=\"strong\">Coin</span>" + NL + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
57 |
"extends java.lang.Enum<<a href=\"../pkg/Coin.html\" " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
58 |
"title=\"enum in pkg\">Coin</a>></pre>" |
10 | 59 |
}, |
60 |
//Check for enum constant section |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
61 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", "<caption><span>Enum Constants" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
62 |
"</span><span class=\"tabEnd\"> </span></caption>"}, |
10 | 63 |
//Detail for enum constant |
64 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
65 |
"<strong><a href=\"../pkg/Coin.html#Dime\">Dime</a></strong>"}, |
10 | 66 |
//Automatically insert documentation for values() and valueOf(). |
67 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", |
|
68 |
"Returns an array containing the constants of this enum type,"}, |
|
69 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", |
|
70 |
"Returns the enum constant of this type with the specified name"}, |
|
71 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", "for (Coin c : Coin.values())"}, |
|
72 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", "Overloaded valueOf() method has correct documentation."}, |
|
73 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", "Overloaded values method has correct documentation."}, |
|
74 |
||
75 |
//================================= |
|
76 |
// TYPE PARAMETER TESTING |
|
77 |
//================================= |
|
78 |
//Make sure the header is correct. |
|
79 |
{BUG_ID + FS + "pkg" + FS + "TypeParameters.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
80 |
"Class TypeParameters<E></h2>"}, |
10 | 81 |
//Check class type parameters section. |
82 |
{BUG_ID + FS + "pkg" + FS + "TypeParameters.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
83 |
"<dt><span class=\"strong\">Type Parameters:</span></dt><dd><code>E</code> - " + |
10 | 84 |
"the type parameter for this class."}, |
85 |
//Type parameters in @see/@link |
|
86 |
{BUG_ID + FS + "pkg" + FS + "TypeParameters.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
87 |
"<dl><dt><span class=\"strong\">See Also:</span></dt><dd>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
88 |
"<a href=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
89 |
"<code>TypeParameters</code></a></dd></dl>"}, |
10 | 90 |
//Method that uses class type parameter. |
91 |
{BUG_ID + FS + "pkg" + FS + "TypeParameters.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
92 |
"(<a href=\"../pkg/TypeParameters.html\" title=\"type " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
93 |
"parameter in TypeParameters\">E</a> param)"}, |
10 | 94 |
//Method type parameter section. |
95 |
{BUG_ID + FS + "pkg" + FS + "TypeParameters.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
96 |
"<span class=\"strong\">Type Parameters:</span></dt><dd><code>T</code> - This is the first " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
97 |
"type parameter.</dd><dd><code>V</code> - This is the second type " + |
10 | 98 |
"parameter."}, |
99 |
//Signature of method with type parameters |
|
100 |
{BUG_ID + FS + "pkg" + FS + "TypeParameters.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
101 |
"public <T extends java.util.List,V> " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
102 |
"java.lang.String[] methodThatHasTypeParameters"}, |
10 | 103 |
//Wildcard testing. |
104 |
{BUG_ID + FS + "pkg" + FS + "Wildcards.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
105 |
"<a href=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
106 |
"TypeParameters</a><? super java.lang.String> a"}, |
10 | 107 |
{BUG_ID + FS + "pkg" + FS + "Wildcards.html", |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
108 |
"<a href=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
109 |
"TypeParameters</a><? extends java.lang.StringBuffer> b"}, |
10 | 110 |
{BUG_ID + FS + "pkg" + FS + "Wildcards.html", |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
111 |
"<a href=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
112 |
"TypeParameters</a> c"}, |
10 | 113 |
//Bad type parameter warnings. |
114 |
{WARNING_OUTPUT, "warning - @param argument " + |
|
115 |
"\"<BadClassTypeParam>\" is not a type parameter name."}, |
|
116 |
{WARNING_OUTPUT, "warning - @param argument " + |
|
117 |
"\"<BadMethodTypeParam>\" is not a type parameter name."}, |
|
118 |
||
119 |
//Signature of subclass that has type parameters. |
|
120 |
{BUG_ID + FS + "pkg" + FS + "TypeParameterSubClass.html", |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
121 |
"<pre>public class <span class=\"strong\">TypeParameterSubClass<T extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
122 |
"java.lang.String></span>" + NL + "extends " + |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
123 |
"<a href=\"../pkg/TypeParameterSuperClass.html\" title=\"class in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
124 |
"TypeParameterSuperClass</a><T></pre>"}, |
10 | 125 |
|
126 |
//Interface generic parameter substitution |
|
127 |
//Signature of subclass that has type parameters. |
|
128 |
{BUG_ID + FS + "pkg" + FS + "TypeParameters.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
129 |
"<dl>" + NL + "<dt>All Implemented Interfaces:</dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
130 |
"<dd><a href=\"../pkg/SubInterface.html\" title=\"interface in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
131 |
"SubInterface</a><E>, <a href=\"../pkg/SuperInterface.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
132 |
"title=\"interface in pkg\">SuperInterface</a><E></dd>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
133 |
"</dl>"}, |
10 | 134 |
{BUG_ID + FS + "pkg" + FS + "SuperInterface.html", |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
135 |
"<dl>" + NL + "<dt>All Known Subinterfaces:</dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
136 |
"<dd><a href=\"../pkg/SubInterface.html\" title=\"interface in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
137 |
"SubInterface</a><V></dd>" + NL + "</dl>"}, |
10 | 138 |
{BUG_ID + FS + "pkg" + FS + "SubInterface.html", |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
139 |
"<dl>" + NL + "<dt>All Superinterfaces:</dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
140 |
"<dd><a href=\"../pkg/SuperInterface.html\" title=\"interface in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
141 |
"SuperInterface</a><V></dd>" + NL + "</dl>"}, |
10 | 142 |
|
143 |
//================================= |
|
144 |
// VAR ARG TESTING |
|
145 |
//================================= |
|
146 |
{BUG_ID + FS + "pkg" + FS + "VarArgs.html", "(int... i)"}, |
|
147 |
{BUG_ID + FS + "pkg" + FS + "VarArgs.html", "(int[][]... i)"}, |
|
148 |
{BUG_ID + FS + "pkg" + FS + "VarArgs.html", "(int[]...)"}, |
|
149 |
{BUG_ID + FS + "pkg" + FS + "VarArgs.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
150 |
"<a href=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
151 |
"TypeParameters</a>... t"}, |
10 | 152 |
|
153 |
//================================= |
|
154 |
// ANNOTATION TYPE TESTING |
|
155 |
//================================= |
|
156 |
//Make sure the summary links are correct. |
|
157 |
{BUG_ID + FS + "pkg" + FS + "AnnotationType.html", |
|
9067
c0b85430843d
7025314: NLS: translatability violation on standard.properties
bpatel
parents:
7681
diff
changeset
|
158 |
"<li>Summary: </li>" + NL + |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
159 |
"<li><a href=\"#annotation_type_required_element_summary\">" + |
9067
c0b85430843d
7025314: NLS: translatability violation on standard.properties
bpatel
parents:
7681
diff
changeset
|
160 |
"Required</a> | </li>" + NL + "<li>" + |
c0b85430843d
7025314: NLS: translatability violation on standard.properties
bpatel
parents:
7681
diff
changeset
|
161 |
"<a href=\"#annotation_type_optional_element_summary\">Optional</a></li>"}, |
10 | 162 |
//Make sure the detail links are correct. |
163 |
{BUG_ID + FS + "pkg" + FS + "AnnotationType.html", |
|
9067
c0b85430843d
7025314: NLS: translatability violation on standard.properties
bpatel
parents:
7681
diff
changeset
|
164 |
"<li>Detail: </li>" + NL + |
c0b85430843d
7025314: NLS: translatability violation on standard.properties
bpatel
parents:
7681
diff
changeset
|
165 |
"<li><a href=\"#annotation_type_element_detail\">Element</a></li>"}, |
10 | 166 |
//Make sure the heading is correct. |
167 |
{BUG_ID + FS + "pkg" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
168 |
"Annotation Type AnnotationType</h2>"}, |
10 | 169 |
//Make sure the signature is correct. |
170 |
{BUG_ID + FS + "pkg" + FS + "AnnotationType.html", |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
171 |
"public @interface <span class=\"strong\">AnnotationType</span>"}, |
10 | 172 |
//Make sure member summary headings are correct. |
173 |
{BUG_ID + FS + "pkg" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
174 |
"<h3>Required Element Summary</h3>"}, |
10 | 175 |
{BUG_ID + FS + "pkg" + FS + "AnnotationType.html", |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
176 |
"<h3>Optional Element Summary</h3>"}, |
10 | 177 |
//Make sure element detail heading is correct |
178 |
{BUG_ID + FS + "pkg" + FS + "AnnotationType.html", |
|
179 |
"Element Detail"}, |
|
180 |
//Make sure default annotation type value is printed when necessary. |
|
181 |
{BUG_ID + FS + "pkg" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
182 |
"<dl>" + NL + "<dt>Default:</dt>" + NL + "<dd>\"unknown\"</dd>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
183 |
"</dl>"}, |
10 | 184 |
|
185 |
//================================= |
|
186 |
// ANNOTATION TYPE USAGE TESTING |
|
187 |
//================================= |
|
188 |
||
189 |
//PACKAGE |
|
190 |
{BUG_ID + FS + "pkg" + FS + "package-summary.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
191 |
"<a href=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">@AnnotationType</a>(<a href=\"../pkg/AnnotationType.html#optional()\">optional</a>=\"Package Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
192 |
" <a href=\"../pkg/AnnotationType.html#required()\">required</a>=1994)"}, |
10 | 193 |
|
194 |
//CLASS |
|
195 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
196 |
"<pre><a href=\"../pkg/AnnotationType.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
197 |
"title=\"annotation in pkg\">@AnnotationType</a>(" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
198 |
"<a href=\"../pkg/AnnotationType.html#optional()\">optional</a>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
199 |
"=\"Class Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
200 |
" <a href=\"../pkg/AnnotationType.html#required()\">" + |
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
201 |
"required</a>=1994)" + NL + "public class <span class=\"strong\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
202 |
"AnnotationTypeUsage</span>" + NL + "extends java.lang.Object</pre>"}, |
10 | 203 |
|
204 |
//FIELD |
|
205 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
206 |
"<pre><a href=\"../pkg/AnnotationType.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
207 |
"title=\"annotation in pkg\">@AnnotationType</a>(" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
208 |
"<a href=\"../pkg/AnnotationType.html#optional()\">optional</a>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
209 |
"=\"Field Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
210 |
" <a href=\"../pkg/AnnotationType.html#required()\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
211 |
"required</a>=1994)" + NL + "public int field</pre>"}, |
10 | 212 |
|
213 |
//CONSTRUCTOR |
|
214 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
215 |
"<pre><a href=\"../pkg/AnnotationType.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
216 |
"title=\"annotation in pkg\">@AnnotationType</a>(" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
217 |
"<a href=\"../pkg/AnnotationType.html#optional()\">optional</a>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
218 |
"=\"Constructor Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
219 |
" <a href=\"../pkg/AnnotationType.html#required()\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
220 |
"required</a>=1994)" + NL + "public AnnotationTypeUsage()</pre>"}, |
10 | 221 |
|
222 |
//METHOD |
|
223 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
224 |
"<pre><a href=\"../pkg/AnnotationType.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
225 |
"title=\"annotation in pkg\">@AnnotationType</a>(" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
226 |
"<a href=\"../pkg/AnnotationType.html#optional()\">optional</a>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
227 |
"=\"Method Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
228 |
" <a href=\"../pkg/AnnotationType.html#required()\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
229 |
"required</a>=1994)" + NL + "public void method()</pre>"}, |
10 | 230 |
|
231 |
//METHOD PARAMS |
|
232 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
233 |
"<pre>public void methodWithParams(" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
234 |
"<a href=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
235 |
"@AnnotationType</a>(<a href=\"../pkg/AnnotationType.html#optional()\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
236 |
"optional</a>=\"Parameter Annotation\",<a " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
237 |
"href=\"../pkg/AnnotationType.html#required()\">required</a>=1994)" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
238 |
" int documented," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
239 |
" int undocmented)</pre>"}, |
10 | 240 |
|
241 |
//CONSTRUCTOR PARAMS |
|
242 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
243 |
"<pre>public AnnotationTypeUsage(<a " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
244 |
"href=\"../pkg/AnnotationType.html\" title=\"annotation in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
245 |
"@AnnotationType</a>(<a href=\"../pkg/AnnotationType.html#optional()\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
246 |
"optional</a>=\"Constructor Param Annotation\",<a " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
247 |
"href=\"../pkg/AnnotationType.html#required()\">required</a>=1994)" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
248 |
" int documented," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
249 |
" int undocmented)</pre>"}, |
10 | 250 |
|
251 |
//================================= |
|
252 |
// ANNOTATION TYPE USAGE TESTING (All Different Types). |
|
253 |
//================================= |
|
254 |
||
255 |
//Integer |
|
256 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
257 |
"<a href=\"../pkg1/A.html#d()\">d</a>=3.14,"}, |
10 | 258 |
|
259 |
//Double |
|
260 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
261 |
"<a href=\"../pkg1/A.html#d()\">d</a>=3.14,"}, |
10 | 262 |
|
263 |
//Boolean |
|
264 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
265 |
"<a href=\"../pkg1/A.html#b()\">b</a>=true,"}, |
10 | 266 |
|
267 |
//String |
|
268 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
269 |
"<a href=\"../pkg1/A.html#s()\">s</a>=\"sigh\","}, |
10 | 270 |
|
271 |
//Class |
|
272 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
273 |
"<a href=\"../pkg1/A.html#c()\">c</a>=<a href=\"../pkg2/Foo.html\" title=\"class in pkg2\">Foo.class</a>,"}, |
10 | 274 |
|
275 |
//Bounded Class |
|
276 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
277 |
"<a href=\"../pkg1/A.html#w()\">w</a>=<a href=\"../pkg/TypeParameterSubClass.html\" title=\"class in pkg\">TypeParameterSubClass.class</a>,"}, |
10 | 278 |
|
279 |
//Enum |
|
280 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
281 |
"<a href=\"../pkg1/A.html#e()\">e</a>=<a href=\"../pkg/Coin.html#Penny\">Penny</a>,"}, |
10 | 282 |
|
283 |
//Annotation Type |
|
284 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
285 |
"<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),"}, |
10 | 286 |
|
287 |
//String Array |
|
288 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
289 |
"<a href=\"../pkg1/A.html#sa()\">sa</a>={\"up\",\"down\"},"}, |
10 | 290 |
|
291 |
//Primitive |
|
292 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
293 |
"<a href=\"../pkg1/A.html#primitiveClassTest()\">primitiveClassTest</a>=boolean.class,"}, |
10 | 294 |
|
295 |
//XXX: Add array test case after this if fixed: |
|
296 |
//5020899: Incorrect internal representation of class-valued annotation elements |
|
297 |
||
298 |
//Make sure that annotations are surrounded by <pre> and </pre> |
|
299 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
300 |
"<pre><a href=\"../pkg1/A.html\" title=\"annotation in pkg1\">@A</a>"}, |
10 | 301 |
{BUG_ID + FS + "pkg1" + FS + "B.html", |
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
302 |
"public interface <span class=\"strong\">B</span></pre>"}, |
10 | 303 |
|
304 |
||
305 |
//============================================================== |
|
306 |
// Handle multiple bounds. |
|
307 |
//============================================================== |
|
308 |
{BUG_ID + FS + "pkg" + FS + "MultiTypeParameters.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
309 |
"public <T extends java.lang.Number & java.lang.Runnable> T foo(T t)"}, |
10 | 310 |
|
311 |
//============================================================== |
|
312 |
// Test Class-Use Documenation for Type Parameters. |
|
313 |
//============================================================== |
|
314 |
||
315 |
//ClassUseTest1: <T extends Foo & Foo2> |
|
316 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
317 |
"<caption><span>Classes in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
318 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
319 |
"type <a href=\"../../pkg2/Foo.html\" title=\"class in pkg2\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
320 |
"Foo</a></span><span class=\"tabEnd\"> </span></caption>" |
10 | 321 |
}, |
322 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html", |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
323 |
"<td class=\"colLast\"><code><strong><a href=\"../../pkg2/ClassUseTest1.html\" " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
324 |
"title=\"class in pkg2\">ClassUseTest1</a><T extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
325 |
"<a href=\"../../pkg2/Foo.html\" title=\"class in pkg2\">Foo" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
326 |
"</a> & <a href=\"../../pkg2/Foo2.html\" title=\"interface in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
327 |
"Foo2</a>></strong></code> </td>" |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
328 |
}, |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
329 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html", |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
330 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
331 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
332 |
"type <a href=\"../../pkg2/Foo.html\" title=\"class in " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
333 |
"pkg2\">Foo</a></span><span class=\"tabEnd\"> </span></caption>" |
10 | 334 |
}, |
335 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
336 |
"<td class=\"colLast\"><span class=\"strong\">ClassUseTest1." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
337 |
"</span><code><strong><a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
338 |
"ClassUseTest1.html#method(T)\">method</a></strong>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
339 |
"(T t)</code> </td>" |
10 | 340 |
}, |
341 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
342 |
"<caption><span>Fields in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
343 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
344 |
"type <a href=\"../../pkg2/Foo.html\" title=\"class in pkg2\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
345 |
"Foo</a></span><span class=\"tabEnd\"> </span></caption>" |
10 | 346 |
}, |
347 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
348 |
"td class=\"colFirst\"><code><a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
349 |
"ParamTest.html\" title=\"class in pkg2\">ParamTest</a>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
350 |
"<<a href=\"../../pkg2/Foo.html\" title=\"class in pkg2\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
351 |
">Foo</a>></code></td>" |
10 | 352 |
}, |
353 |
||
354 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
355 |
"<caption><span>Fields in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
356 |
"package-summary.html\">pkg2</a> declared as <a href=\"../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
357 |
"../pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
358 |
"</a></span><span class=\"tabEnd\"> </span></caption>" |
10 | 359 |
}, |
360 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
361 |
"<td class=\"colFirst\"><code><a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
362 |
"ParamTest.html\" title=\"class in pkg2\">ParamTest</a><<a " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
363 |
"href=\"../../pkg2/Foo.html\" title=\"class in pkg2\">Foo</a" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
364 |
">></code></td>" |
10 | 365 |
}, |
366 |
||
367 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
368 |
"<caption><span>Classes in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
369 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
370 |
"type <a href=\"../../pkg2/Foo2.html\" title=\"interface " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
371 |
"in pkg2\">Foo2</a></span><span class=\"tabEnd\"> " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
372 |
"</span></caption>" |
10 | 373 |
}, |
374 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html", |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
375 |
"<td class=\"colLast\"><code><strong><a href=\"../../pkg2/ClassUseTest1.html\" " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
376 |
"title=\"class in pkg2\">ClassUseTest1</a><T extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
377 |
"<a href=\"../../pkg2/Foo.html\" title=\"class in pkg2\">Foo" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
378 |
"</a> & <a href=\"../../pkg2/Foo2.html\" title=\"interface in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
379 |
"Foo2</a>></strong></code> </td>" |
10 | 380 |
}, |
381 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
382 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
383 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
384 |
"type <a href=\"../../pkg2/Foo2.html\" title=\"interface " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
385 |
"in pkg2\">Foo2</a></span><span class=\"tabEnd\"> " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
386 |
"</span></caption>" |
10 | 387 |
}, |
388 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo2.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
389 |
"<td class=\"colLast\"><span class=\"strong\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
390 |
"ClassUseTest1.</span><code><strong><a href=\"../../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
391 |
"pkg2/ClassUseTest1.html#method(T)\">method</a></strong>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
392 |
"(T t)</code> </td>" |
10 | 393 |
}, |
394 |
||
395 |
//ClassUseTest2: <T extends ParamTest<Foo3>> |
|
396 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
397 |
"<caption><span>Classes in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
398 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
399 |
"type <a href=\"../../pkg2/ParamTest.html\" title=\"class " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
400 |
"in pkg2\">ParamTest</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
401 |
" </span></caption>" |
10 | 402 |
}, |
403 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
404 |
"<td class=\"colLast\"><code><strong><a href=\"../../pkg2/ClassUseTest2.html\" " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
405 |
"title=\"class in pkg2\">ClassUseTest2</a><T extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
406 |
"<a href=\"../../pkg2/ParamTest.html\" title=\"class in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
407 |
"ParamTest</a><<a href=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
408 |
"Foo3</a>>></strong></code> </td>" |
10 | 409 |
}, |
410 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
411 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
412 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
413 |
"type <a href=\"../../pkg2/ParamTest.html\" title=\"class " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
414 |
"in pkg2\">ParamTest</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
415 |
" </span></caption>" |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
416 |
}, |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
417 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
418 |
"<td class=\"colLast\"><span class=\"strong\">ClassUseTest2." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
419 |
"</span><code><strong><a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
420 |
"ClassUseTest2.html#method(T)\">method</a></strong>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
421 |
"(T t)</code> </td>" |
10 | 422 |
}, |
423 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
424 |
"<caption><span>Fields in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
425 |
"package-summary.html\">pkg2</a> declared as <a href=\"../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
426 |
"../pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
427 |
"</a></span><span class=\"tabEnd\"> </span></caption>" |
10 | 428 |
}, |
429 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
430 |
"<td class=\"colFirst\"><code><a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
431 |
"ParamTest.html\" title=\"class in pkg2\">ParamTest</a>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
432 |
"<<a href=\"../../pkg2/Foo.html\" title=\"class in pkg2\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
433 |
"Foo</a>></code></td>" |
10 | 434 |
}, |
435 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
436 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
437 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
438 |
"type <a href=\"../../pkg2/ParamTest.html\" title=\"class " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
439 |
"in pkg2\">ParamTest</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
440 |
" </span></caption>" |
10 | 441 |
}, |
442 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
443 |
"<td class=\"colFirst\"><code><T extends <a href=\"../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
444 |
"../pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
445 |
"</a><<a href=\"../../pkg2/Foo3.html\" title=\"class in " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
446 |
"pkg2\">Foo3</a>>> <br><a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
447 |
"ParamTest.html\" title=\"class in pkg2\">ParamTest</a>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
448 |
"<<a href=\"../../pkg2/Foo3.html\" title=\"class in " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
449 |
"pkg2\">Foo3</a>></code></td>" |
10 | 450 |
}, |
451 |
||
452 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
453 |
"<caption><span>Classes in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
454 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
455 |
"type <a href=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
456 |
"Foo3</a></span><span class=\"tabEnd\"> </span></caption>" |
10 | 457 |
}, |
458 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html", |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
459 |
"<td class=\"colLast\"><code><strong><a href=\"../../pkg2/ClassUseTest2.html\" " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
460 |
"title=\"class in pkg2\">ClassUseTest2</a><T extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
461 |
"<a href=\"../../pkg2/ParamTest.html\" title=\"class in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
462 |
"ParamTest</a><<a href=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
463 |
"Foo3</a>>></strong></code> </td>" |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
464 |
}, |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
465 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html", |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
466 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
467 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
468 |
"type <a href=\"../../pkg2/Foo3.html\" title=\"class in " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
469 |
"pkg2\">Foo3</a></span><span class=\"tabEnd\"> " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
470 |
"</span></caption>" |
10 | 471 |
}, |
472 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
473 |
"<td class=\"colLast\"><span class=\"strong\">ClassUseTest2." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
474 |
"</span><code><strong><a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
475 |
"ClassUseTest2.html#method(T)\">method</a></strong>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
476 |
"(T t)</code> </td>" |
10 | 477 |
}, |
478 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
479 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
480 |
"package-summary.html\">pkg2</a> that return types with " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
481 |
"arguments of type <a href=\"../../pkg2/Foo3.html\" title" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
482 |
"=\"class in pkg2\">Foo3</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
483 |
" </span></caption>" |
10 | 484 |
}, |
485 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo3.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
486 |
"<td class=\"colFirst\"><code><T extends <a href=\"../../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
487 |
"pkg2/ParamTest.html\" title=\"class in pkg2\">ParamTest</a><" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
488 |
"<a href=\"../../pkg2/Foo3.html\" title=\"class in pkg2\">Foo3" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
489 |
"</a>>> <br><a href=\"../../pkg2/ParamTest.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
490 |
"title=\"class in pkg2\">ParamTest</a><<a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
491 |
"Foo3.html\" title=\"class in pkg2\">Foo3</a>></code></td>" |
10 | 492 |
}, |
493 |
||
494 |
//ClassUseTest3: <T extends ParamTest2<List<? extends Foo4>>> |
|
495 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
496 |
"<caption><span>Classes in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
497 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
498 |
"type <a href=\"../../pkg2/ParamTest2.html\" title=\"class " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
499 |
"in pkg2\">ParamTest2</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
500 |
" </span></caption>" |
10 | 501 |
}, |
502 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html", |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
503 |
"<td class=\"colLast\"><code><strong><a href=\"../../pkg2/ClassUseTest3.html\" " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
504 |
"title=\"class in pkg2\">ClassUseTest3</a><T extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
505 |
"<a href=\"../../pkg2/ParamTest2.html\" title=\"class in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
506 |
"ParamTest2</a><java.util.List<? extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
507 |
"<a href=\"../../pkg2/Foo4.html\" title=\"class in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
508 |
"Foo4</a>>>></strong></code> </td>" |
10 | 509 |
}, |
510 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
511 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
512 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
513 |
"type <a href=\"../../pkg2/ParamTest2.html\" title=\"class " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
514 |
"in pkg2\">ParamTest2</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
515 |
" </span></caption>" |
10 | 516 |
}, |
517 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
518 |
"<td class=\"colLast\"><span class=\"strong\">ClassUseTest3" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
519 |
".</span><code><strong><a href=\"../../pkg2/ClassUseTest3." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
520 |
"html#method(T)\">method</a></strong>(T t)</code> </td>" |
10 | 521 |
}, |
522 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "ParamTest2.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
523 |
"<td class=\"colFirst\"><code><T extends <a href=\"../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
524 |
"../pkg2/ParamTest2.html\" title=\"class in pkg2\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
525 |
"ParamTest2</a><java.util.List<? extends <a href=\".." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
526 |
"/../pkg2/Foo4.html\" title=\"class in pkg2\">Foo4</a>>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
527 |
">> <br><a href=\"../../pkg2/ParamTest2.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
528 |
"title=\"class in pkg2\">ParamTest2</a><java.util.List" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
529 |
"<? extends <a href=\"../../pkg2/Foo4.html\" title=\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
530 |
"class in pkg2\">Foo4</a>>></code></td>" |
10 | 531 |
}, |
532 |
||
533 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
534 |
"<caption><span>Classes in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
535 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
536 |
"type <a href=\"../../pkg2/Foo4.html\" title=\"class in " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
537 |
"pkg2\">Foo4</a></span><span class=\"tabEnd\"> " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
538 |
"</span></caption>" |
10 | 539 |
}, |
540 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", |
|
9083
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
541 |
"<td class=\"colLast\"><code><strong><a href=\"../../pkg2/ClassUseTest3.html\" " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
542 |
"title=\"class in pkg2\">ClassUseTest3</a><T extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
543 |
"<a href=\"../../pkg2/ParamTest2.html\" title=\"class in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
544 |
"ParamTest2</a><java.util.List<? extends " + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
545 |
"<a href=\"../../pkg2/Foo4.html\" title=\"class in pkg2\">" + |
63f3c4d2d992
7010344: Some of the html files do not have element <a> in right context.
bpatel
parents:
9067
diff
changeset
|
546 |
"Foo4</a>>>></strong></code> </td>" |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
547 |
}, |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
548 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
549 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
550 |
"package-summary.html\">pkg2</a> with type parameters of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
551 |
"type <a href=\"../../pkg2/Foo4.html\" title=\"class in " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
552 |
"pkg2\">Foo4</a></span><span class=\"tabEnd\"> </span></caption>" |
10 | 553 |
}, |
554 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
555 |
"<td class=\"colLast\"><span class=\"strong\">ClassUseTest3." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
556 |
"</span><code><strong><a href=\"../../pkg2/ClassUseTest3." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
557 |
"html#method(T)\">method</a></strong>(T t)</code>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
558 |
" </td>" |
10 | 559 |
}, |
560 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
561 |
"<caption><span>Methods in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
562 |
"package-summary.html\">pkg2</a> that return types with " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
563 |
"arguments of type <a href=\"../../pkg2/Foo4.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
564 |
"title=\"class in pkg2\">Foo4</a></span><span class=\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
565 |
"tabEnd\"> </span></caption>" |
10 | 566 |
}, |
567 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
568 |
"<td class=\"colFirst\"><code><T extends <a href=\"../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
569 |
"../pkg2/ParamTest2.html\" title=\"class in pkg2\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
570 |
"ParamTest2</a><java.util.List<? extends <a href=\".." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
571 |
"/../pkg2/Foo4.html\" title=\"class in pkg2\">Foo4</a>>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
572 |
">> <br><a href=\"../../pkg2/ParamTest2.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
573 |
"title=\"class in pkg2\">ParamTest2</a><java.util.List" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
574 |
"<? extends <a href=\"../../pkg2/Foo4.html\" title=\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
575 |
"class in pkg2\">Foo4</a>>></code></td>" |
10 | 576 |
}, |
577 |
||
578 |
//Type parameters in constructor and method args |
|
579 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
580 |
"<caption><span>Method parameters in <a href=\"../../pkg2/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
581 |
"package-summary.html\">pkg2</a> with type arguments of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
582 |
"type <a href=\"../../pkg2/Foo4.html\" title=\"class in " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
583 |
"pkg2\">Foo4</a></span><span class=\"tabEnd\"> " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
584 |
"</span></caption>" + NL + "<tr>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
585 |
"<th class=\"colFirst\" scope=\"col\">Modifier and Type</th>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
586 |
"<th class=\"colLast\" scope=\"col\">Method and Description</th>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
587 |
"</tr>" + NL + "<tbody>" + NL + "<tr class=\"altColor\">" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
588 |
"<td class=\"colFirst\"><code>void</code></td>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
589 |
"<td class=\"colLast\"><span class=\"strong\">ClassUseTest3." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
590 |
"</span><code><strong><a href=\"../../pkg2/ClassUseTest3." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
591 |
"html#method(java.util.Set)\">method</a></strong>(java." + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
592 |
"util.Set<<a href=\"../../pkg2/Foo4.html\" title=\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
593 |
"class in pkg2\">Foo4</a>> p)</code> </td>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
594 |
"</tr>" + NL + "</tbody>" |
10 | 595 |
}, |
596 |
{BUG_ID + FS + "pkg2" + FS + "class-use" + FS + "Foo4.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
597 |
"<caption><span>Constructor parameters in <a href=\"../../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
598 |
"pkg2/package-summary.html\">pkg2</a> with type arguments " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
599 |
"of type <a href=\"../../pkg2/Foo4.html\" title=\"class in " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
600 |
"pkg2\">Foo4</a></span><span class=\"tabEnd\"> " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
601 |
"</span></caption>" |
10 | 602 |
}, |
603 |
||
604 |
//================================= |
|
605 |
// Annotatation Type Usage |
|
606 |
//================================= |
|
607 |
{BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
608 |
"<caption><span>Packages with annotations of type <a href=\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
609 |
"../../pkg/AnnotationType.html\" title=\"annotation in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
610 |
"AnnotationType</a></span><span class=\"tabEnd\"> " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
611 |
"</span></caption>" |
10 | 612 |
}, |
613 |
||
614 |
{BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
615 |
"<caption><span>Classes in <a href=\"../../pkg/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
616 |
"package-summary.html\">pkg</a> with annotations of type " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
617 |
"<a href=\"../../pkg/AnnotationType.html\" title=\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
618 |
"annotation in pkg\">AnnotationType</a></span><span class" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
619 |
"=\"tabEnd\"> </span></caption>" |
10 | 620 |
}, |
621 |
||
622 |
{BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
623 |
"<caption><span>Fields in <a href=\"../../pkg/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
624 |
"package-summary.html\">pkg</a> with annotations of type " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
625 |
"<a href=\"../../pkg/AnnotationType.html\" title=\"annotation " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
626 |
"in pkg\">AnnotationType</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
627 |
" </span></caption>" |
10 | 628 |
}, |
629 |
||
630 |
{BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
631 |
"<caption><span>Methods in <a href=\"../../pkg/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
632 |
"package-summary.html\">pkg</a> with annotations of type " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
633 |
"<a href=\"../../pkg/AnnotationType.html\" title=\"annotation " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
634 |
"in pkg\">AnnotationType</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
635 |
" </span></caption>" |
10 | 636 |
}, |
637 |
||
638 |
{BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
639 |
"<caption><span>Method parameters in <a href=\"../../pkg/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
640 |
"package-summary.html\">pkg</a> with annotations of type " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
641 |
"<a href=\"../../pkg/AnnotationType.html\" title=\"annotation " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
642 |
"in pkg\">AnnotationType</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
643 |
" </span></caption>" |
10 | 644 |
}, |
645 |
||
646 |
{BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
647 |
"<caption><span>Constructors in <a href=\"../../pkg/" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
648 |
"package-summary.html\">pkg</a> with annotations of type " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
649 |
"<a href=\"../../pkg/AnnotationType.html\" title=\"annotation " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
650 |
"in pkg\">AnnotationType</a></span><span class=\"tabEnd\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
651 |
" </span></caption>" |
10 | 652 |
}, |
653 |
||
654 |
{BUG_ID + FS + "pkg" + FS + "class-use" + FS + "AnnotationType.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
655 |
"<caption><span>Constructor parameters in <a href=\"../../" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
656 |
"pkg/package-summary.html\">pkg</a> with annotations of " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
657 |
"type <a href=\"../../pkg/AnnotationType.html\" title=\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
658 |
"annotation in pkg\">AnnotationType</a></span><span class=\"" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
659 |
"tabEnd\"> </span></caption>" |
10 | 660 |
}, |
661 |
||
662 |
//================================= |
|
663 |
// TYPE PARAMETER IN INDEX |
|
664 |
//================================= |
|
665 |
{BUG_ID + FS + "index-all.html", |
|
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
9083
diff
changeset
|
666 |
"<span class=\"strong\"><a href=\"pkg2/Foo.html#method(java.util.Vector)\">" + |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
667 |
"method(Vector<Object>)</a></span>" |
10 | 668 |
}, |
669 |
//================================= |
|
670 |
// TYPE PARAMETER IN INDEX |
|
671 |
//================================= |
|
672 |
{BUG_ID + FS + "index-all.html", |
|
14357
faf9cde2817b
8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents:
9083
diff
changeset
|
673 |
"<span class=\"strong\"><a href=\"pkg2/Foo.html#method(java.util.Vector)\">" + |
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
674 |
"method(Vector<Object>)</a></span>" |
10 | 675 |
}, |
676 |
}; |
|
677 |
private static final String[][] NEGATED_TEST = { |
|
678 |
//================================= |
|
679 |
// ENUM TESTING |
|
680 |
//================================= |
|
681 |
//NO constructor section |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
682 |
{BUG_ID + FS + "pkg" + FS + "Coin.html", "<span class=\"strong\">Constructor Summary</span>"}, |
10 | 683 |
//================================= |
684 |
// TYPE PARAMETER TESTING |
|
685 |
//================================= |
|
686 |
//No type parameters in class frame. |
|
687 |
{BUG_ID + FS + "allclasses-frame.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
688 |
"<a href=\"../pkg/TypeParameters.html\" title=\"class in pkg\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
689 |
"TypeParameters</a><<a href=\"../pkg/TypeParameters.html\" " + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
690 |
"title=\"type parameter in TypeParameters\">E</a>>" |
10 | 691 |
}, |
692 |
||
693 |
//============================================================== |
|
694 |
// ANNOTATION TYPE USAGE TESTING (When @Documented is omitted) |
|
695 |
//=============================================================== |
|
696 |
||
697 |
//CLASS |
|
698 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
699 |
"<a href=\"../pkg/AnnotationTypeUndocumented.html\" title=\"annotation in pkg\">@AnnotationTypeUndocumented</a>(<a href=\"../pkg/AnnotationType.html#optional\">optional</a>=\"Class Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
700 |
" <a href=\"../pkg/AnnotationType.html#required\">required</a>=1994)" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
701 |
"public class <strong>AnnotationTypeUsage</strong></dt><dt>extends java.lang.Object</dt>"}, |
10 | 702 |
|
703 |
//FIELD |
|
704 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
705 |
"<a href=\"../pkg/AnnotationTypeUndocumented.html\" title=\"annotation in pkg\">@AnnotationTypeUndocumented</a>(<a href=\"../pkg/AnnotationType.html#optional\">optional</a>=\"Field Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
706 |
" <a href=\"../pkg/AnnotationType.html#required\">required</a>=1994)" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
707 |
"public int <strong>field</strong>"}, |
10 | 708 |
|
709 |
//CONSTRUCTOR |
|
710 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
711 |
"<a href=\"../pkg/AnnotationTypeUndocumented.html\" title=\"annotation in pkg\">@AnnotationTypeUndocumented</a>(<a href=\"../pkg/AnnotationType.html#optional\">optional</a>=\"Constructor Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
712 |
" <a href=\"../pkg/AnnotationType.html#required\">required</a>=1994)" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
713 |
"public <strong>AnnotationTypeUsage</strong>()"}, |
10 | 714 |
|
715 |
//METHOD |
|
716 |
{BUG_ID + FS + "pkg" + FS + "AnnotationTypeUsage.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
717 |
"<a href=\"../pkg/AnnotationTypeUndocumented.html\" title=\"annotation in pkg\">@AnnotationTypeUndocumented</a>(<a href=\"../pkg/AnnotationType.html#optional\">optional</a>=\"Method Annotation\"," + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
718 |
" <a href=\"../pkg/AnnotationType.html#required\">required</a>=1994)" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
719 |
"public void <strong>method</strong>()"}, |
10 | 720 |
|
721 |
//================================= |
|
722 |
// Make sure annotation types do not |
|
723 |
// trigger this warning. |
|
724 |
//================================= |
|
725 |
{WARNING_OUTPUT, |
|
726 |
"Internal error: package sets don't match: [] with: null" |
|
727 |
}, |
|
728 |
}; |
|
729 |
||
730 |
/** |
|
731 |
* The entry point of the test. |
|
732 |
* @param args the array of command line arguments. |
|
733 |
*/ |
|
734 |
public static void main(String[] args) { |
|
735 |
TestNewLanguageFeatures tester = new TestNewLanguageFeatures(); |
|
736 |
run(tester, ARGS, TEST, NEGATED_TEST); |
|
737 |
tester.printSummary(); |
|
738 |
} |
|
739 |
||
740 |
/** |
|
741 |
* {@inheritDoc} |
|
742 |
*/ |
|
743 |
public String getBugId() { |
|
744 |
return BUG_ID; |
|
745 |
} |
|
746 |
||
747 |
/** |
|
748 |
* {@inheritDoc} |
|
749 |
*/ |
|
750 |
public String getBugName() { |
|
751 |
return getClass().getName(); |
|
752 |
} |
|
753 |
} |