author | jjg |
Wed, 16 Apr 2014 16:17:09 -0700 | |
changeset 23971 | f5ff1f5a8dee |
parent 21478 | fa4c7cda1b41 |
child 24065 | fc4022e50129 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
23971 | 2 |
* Copyright (c) 2002, 2014, 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 |
|
21478
fa4c7cda1b41
8026567: Use meaningful style names for strong and italic styles.
bpatel
parents:
19253
diff
changeset
|
26 |
* @bug 4634891 8026567 |
10 | 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 TestOverridenPrivateMethodsWithPrivateFlag |
|
33 |
* @run main TestOverridenPrivateMethodsWithPrivateFlag |
|
34 |
*/ |
|
35 |
||
36 |
public class TestOverridenPrivateMethodsWithPrivateFlag 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 |
|
23971 | 42 |
{BUG_ID + "/pkg1/SubClass.html", |
43 |
"<dt><span class=\"overrideSpecifyLabel\">Overrides:</span></dt>\n" + |
|
7614
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"}, |
10 | 45 |
|
46 |
//The package private method should be overriden since the base and sub class are in the same |
|
47 |
//package. |
|
23971 | 48 |
{BUG_ID + "/pkg1/SubClass.html", |
49 |
"<dt><span class=\"overrideSpecifyLabel\">Overrides:</span></dt>\n" + |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
50 |
"<dd><code><a href=\"../pkg1/BaseClass.html#packagePrivateMethod"}, |
10 | 51 |
|
52 |
//The public method in different package should be overriden |
|
23971 | 53 |
{BUG_ID + "/pkg2/SubClass.html", |
54 |
"<dt><span class=\"overrideSpecifyLabel\">Overrides:</span></dt>\n" + |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
55 |
"<dd><code><a href=\"../pkg1/BaseClass.html#publicMethod"}, |
10 | 56 |
}; |
57 |
||
58 |
private static final String[][] NEGATED_TEST = { |
|
59 |
||
60 |
//The private method in should not be overriden |
|
23971 | 61 |
{BUG_ID + "/pkg1/SubClass.html", |
62 |
"<dt><span class=\"overrideSpecifyLabel\">Overrides:</span></dt>\n" + |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
63 |
"<dd><code><a href=\"../pkg1/BaseClass.html#privateMethod"}, |
10 | 64 |
|
65 |
//The private method in different package should not be overriden |
|
23971 | 66 |
{BUG_ID + "/pkg2/SubClass.html", |
67 |
"<dt><span class=\"overrideSpecifyLabel\">Overrides:</span></dt>\n" + |
|
7614
cfadc977ca75
6851834: Javadoc doclet needs a structured approach to generate the output HTML.
bpatel
parents:
5520
diff
changeset
|
68 |
"<dd><code><a href=\"../pkg1/BaseClass.html#privateMethod"}, |
10 | 69 |
|
70 |
//The package private method should not be overriden since the base and sub class are in |
|
71 |
//different packages. |
|
23971 | 72 |
{BUG_ID + "/pkg2/SubClass.html", |
73 |
"<dt><span class=\"overrideSpecifyLabel\">Overrides:</span></dt>\n" + |
|
7614
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#packagePrivateMethod"} |
10 | 75 |
|
76 |
||
77 |
}; |
|
78 |
||
79 |
private static final String[] ARGS = |
|
80 |
new String[] { |
|
81 |
"-d", BUG_ID, "-sourcepath", SRC_DIR, "-private", "pkg1", "pkg2"}; |
|
82 |
||
83 |
/** |
|
84 |
* The entry point of the test. |
|
85 |
* @param args the array of command line arguments. |
|
86 |
*/ |
|
87 |
public static void main(String[] args) { |
|
88 |
TestOverridenPrivateMethodsWithPrivateFlag tester = new TestOverridenPrivateMethodsWithPrivateFlag(); |
|
89 |
run(tester, ARGS, TEST, NEGATED_TEST); |
|
90 |
tester.printSummary(); |
|
91 |
} |
|
92 |
||
93 |
/** |
|
94 |
* {@inheritDoc} |
|
95 |
*/ |
|
96 |
public String getBugId() { |
|
97 |
return BUG_ID; |
|
98 |
} |
|
99 |
||
100 |
/** |
|
101 |
* {@inheritDoc} |
|
102 |
*/ |
|
103 |
public String getBugName() { |
|
104 |
return getClass().getName(); |
|
105 |
} |
|
106 |
} |