author | bpatel |
Fri, 27 Feb 2009 18:57:17 -0800 | |
changeset 2216 | b124d5c924eb |
parent 1787 | 1aa079321cd2 |
child 5520 | 86e4b9a9da40 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
2 |
* Copyright 2002-2005 Sun Microsystems, Inc. All Rights Reserved. |
|
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 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
*/ |
|
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 4652655 4857717 |
|
27 |
* @summary This test verifies that class cross references work properly. |
|
28 |
* @author jamieh |
|
29 |
* @library ../lib/ |
|
30 |
* @build JavadocTester |
|
31 |
* @build TestClassCrossReferences |
|
32 |
* @run main TestClassCrossReferences |
|
33 |
*/ |
|
34 |
||
35 |
public class TestClassCrossReferences extends JavadocTester { |
|
36 |
||
37 |
private static final String BUG_ID = "4652655-4857717"; |
|
38 |
private static final String[][] TEST = { |
|
39 |
{BUG_ID + FS + "C.html", |
|
40 |
"<A HREF=\"http://java.sun.com/j2se/1.4/docs/api/java/math/package-summary.html?is-external=true\"><CODE>Link to math package</CODE></A>"}, |
|
41 |
{BUG_ID + FS + "C.html", |
|
42 |
"<A HREF=\"http://java.sun.com/j2se/1.4/docs/api/javax/swing/text/AbstractDocument.AttributeContext.html?is-external=true\" " + |
|
43 |
"title=\"class or interface in javax.swing.text\"><CODE>Link to AttributeContext innerclass</CODE></A>"}, |
|
44 |
{BUG_ID + FS + "C.html", |
|
45 |
"<A HREF=\"http://java.sun.com/j2se/1.4/docs/api/java/math/BigDecimal.html?is-external=true\" " + |
|
46 |
"title=\"class or interface in java.math\"><CODE>Link to external class BigDecimal</CODE></A>"}, |
|
47 |
{BUG_ID + FS + "C.html", |
|
48 |
"<A HREF=\"http://java.sun.com/j2se/1.4/docs/api/java/math/BigInteger.html?is-external=true#gcd(java.math.BigInteger)\" " + |
|
49 |
"title=\"class or interface in java.math\"><CODE>Link to external member gcd</CODE></A>"}, |
|
50 |
{BUG_ID + FS + "C.html", |
|
2216
b124d5c924eb
6786690: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - DL tag and nesting issue
bpatel
parents:
1787
diff
changeset
|
51 |
"<STRONG>Overrides:</STRONG></DT><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE>"} |
10 | 52 |
}; |
53 |
private static final String[][] NEGATED_TEST = NO_TEST; |
|
54 |
private static final String[] ARGS = |
|
55 |
new String[] { |
|
56 |
"-d", BUG_ID, "-sourcepath", SRC_DIR, |
|
57 |
"-linkoffline", "http://java.sun.com/j2se/1.4/docs/api/", |
|
58 |
SRC_DIR, SRC_DIR + FS + "C.java"}; |
|
59 |
||
60 |
/** |
|
61 |
* The entry point of the test. |
|
62 |
* @param args the array of command line arguments. |
|
63 |
*/ |
|
64 |
public static void main(String[] args) { |
|
65 |
TestClassCrossReferences tester = new TestClassCrossReferences(); |
|
66 |
run(tester, ARGS, TEST, NEGATED_TEST); |
|
67 |
tester.printSummary(); |
|
68 |
} |
|
69 |
||
70 |
/** |
|
71 |
* {@inheritDoc} |
|
72 |
*/ |
|
73 |
public String getBugId() { |
|
74 |
return BUG_ID; |
|
75 |
} |
|
76 |
||
77 |
/** |
|
78 |
* {@inheritDoc} |
|
79 |
*/ |
|
80 |
public String getBugName() { |
|
81 |
return getClass().getName(); |
|
82 |
} |
|
83 |
} |