author | bpatel |
Wed, 01 Dec 2010 11:02:38 -0800 | |
changeset 7614 | cfadc977ca75 |
parent 5520 | 86e4b9a9da40 |
child 7681 | 1f0819a3341f |
permissions | -rw-r--r-- |
10 | 1 |
/* |
5520 | 2 |
* Copyright (c) 2002, 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 |
|
26 |
* @bug 4634891 |
|
27 |
* @summary Determine if overriden methods are properly documented when |
|
28 |
* -protected (default) visibility flag is used. |
|
29 |
* @author jamieh |
|
30 |
* @library ../lib/ |
|
31 |
* @build JavadocTester |
|
32 |
* @build TestOverridenPrivateMethodsWithPackageFlag |
|
33 |
* @run main TestOverridenPrivateMethodsWithPackageFlag |
|
34 |
*/ |
|
35 |
||
36 |
public class TestOverridenPrivateMethodsWithPackageFlag extends JavadocTester { |
|
37 |
||
38 |
private static final String BUG_ID = "4634891"; |
|
39 |
||
40 |
private static final String[][] TEST = { |
|
41 |
//The public method should be overriden |
|
42 |
{BUG_ID + FS + "pkg1" + FS + "SubClass.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
43 |
"<dt><strong>Overrides:</strong></dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
44 |
"<dd><code><a href=\"../pkg1/BaseClass.html#publicMethod()\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
45 |
"publicMethod</a></code> in class <code>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
46 |
"<a href=\"../pkg1/BaseClass.html\" title=\"class in pkg1\">BaseClass</a></code></dd>"}, |
10 | 47 |
|
48 |
//The public method in different package should be overriden |
|
49 |
{BUG_ID + FS + "pkg2" + FS + "SubClass.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
50 |
"<dt><strong>Overrides:</strong></dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
51 |
"<dd><code><a href=\"../pkg1/BaseClass.html#publicMethod()\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
52 |
"publicMethod</a></code> in class <code>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
53 |
"<a href=\"../pkg1/BaseClass.html\" title=\"class in pkg1\">BaseClass</a></code></dd>"}, |
10 | 54 |
|
55 |
//The package private method should be overriden since the base and sub class are in the same |
|
56 |
//package. |
|
57 |
{BUG_ID + FS + "pkg1" + FS + "SubClass.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
58 |
"<dt><strong>Overrides:</strong></dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
59 |
"<dd><code><a href=\"../pkg1/BaseClass.html#packagePrivateMethod()\">" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
60 |
"packagePrivateMethod</a></code> in class <code>" + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
61 |
"<a href=\"../pkg1/BaseClass.html\" title=\"class in pkg1\">BaseClass</a></code></dd>"} |
10 | 62 |
}; |
63 |
||
64 |
private static final String[][] NEGATED_TEST = { |
|
65 |
||
66 |
//The private method in should not be overriden |
|
67 |
{BUG_ID + FS + "pkg1" + FS + "SubClass.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
68 |
"<dt><strong>Overrides:</strong></dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
69 |
"<dd><code><a href=\"../pkg1/BaseClass.html#privateMethod()\">"}, |
10 | 70 |
|
71 |
//The private method in different package should not be overriden |
|
72 |
{BUG_ID + FS + "pkg2" + FS + "SubClass.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
73 |
"<dt><strong>Overrides:</strong></dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
74 |
"<dd><code><a href=\"../pkg1/BaseClass.html#privateMethod()\">"}, |
10 | 75 |
|
76 |
//The package private method should not be overriden since the base and sub class are in |
|
77 |
//different packages. |
|
78 |
{BUG_ID + FS + "pkg2" + FS + "SubClass.html", |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
79 |
"<dt><strong>Overrides:</strong></dt>" + NL + |
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
80 |
"<dd><code><a href=\"../pkg1/BaseClass.html#packagePrivateMethod()\">"}, |
10 | 81 |
}; |
82 |
||
83 |
private static final String[] ARGS = |
|
84 |
new String[] { |
|
85 |
"-d", BUG_ID, "-sourcepath", SRC_DIR, "-package", "pkg1", "pkg2"}; |
|
86 |
||
87 |
/** |
|
88 |
* The entry point of the test. |
|
89 |
* @param args the array of command line arguments. |
|
90 |
*/ |
|
91 |
public static void main(String[] args) { |
|
92 |
TestOverridenPrivateMethodsWithPackageFlag tester = new TestOverridenPrivateMethodsWithPackageFlag(); |
|
93 |
run(tester, ARGS, TEST, NEGATED_TEST); |
|
94 |
tester.printSummary(); |
|
95 |
} |
|
96 |
||
97 |
/** |
|
98 |
* {@inheritDoc} |
|
99 |
*/ |
|
100 |
public String getBugId() { |
|
101 |
return BUG_ID; |
|
102 |
} |
|
103 |
||
104 |
/** |
|
105 |
* {@inheritDoc} |
|
106 |
*/ |
|
107 |
public String getBugName() { |
|
108 |
return getClass().getName(); |
|
109 |
} |
|
110 |
} |