1 /*
2 * Copyright (c) 2003, 2019, Oracle and/or its affiliates. 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 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.
22 */
23
24 /*
25 * @test
26 * @bug 4951228 6290760 8025633 8026567 8081854 8162363 8175200 8177417 8186332 8182765
27 * @summary Test the case where the overriden method returns a different
28 * type than the method in the child class. Make sure the
29 * documentation is inherited but the return type isn't.
30 * @author jamieh
31 * @library ../../lib
32 * @modules jdk.javadoc/jdk.javadoc.internal.tool
33 * @build javadoc.tester.*
34 * @run main TestMemberSummary
35 */
36
37 import javadoc.tester.JavadocTester;
38
39 public class TestMemberSummary extends JavadocTester {
40
41 public static void main(String... args) throws Exception {
42 TestMemberSummary tester = new TestMemberSummary();
43 tester.runTests();
44 }
45
46 @Test
47 public void test() {
48 javadoc("-d", "out",
49 "-private",
50 "-sourcepath", testSrc,
51 "pkg","pkg2");
52 checkExit(Exit.OK);
53
54 checkOutput("pkg/PublicChild.html", true,
55 // Check return type in member summary.
56 "<code><a href=\"PublicChild.html\" title=\"class in pkg\">PublicChild</a></code></td>\n"
57 + "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\"><a href=\"#returnTypeTest()\">"
58 + "returnTypeTest</a></span>()</code>",
59 // Check return type in member detail.
60 "<pre class=\"methodSignature\">public <a href=\"PublicChild.html\" title=\"class in pkg\">"
61 + "PublicChild</a> returnTypeTest()</pre>",
62 "<th class=\"colConstructorName\" scope=\"row\"><code><span class=\"memberNameLink\">"
63 + "<a href=\"#%3Cinit%3E()\">PublicChild</a></span>()</code></th>");
64
65 checkOutput("pkg/PrivateParent.html", true,
66 "<td class=\"colFirst\"><code>private </code></td>\n"
67 + "<th class=\"colConstructorName\" scope=\"row\"><code><span class=\"memberNameLink\">"
68 + "<a href=\"#%3Cinit%3E(int)\">PrivateParent</a></span>(int i)</code>"
69 + "</th>");
70
71 // Legacy anchor dimensions (6290760)
72 checkOutput("pkg2/A.html", true,
73 "<a id=\"f(java.lang.Object[])\">\n"
74 + "<!-- -->\n"
75 + "</a><a id=\"f(T[])\">\n"
76 + "<!-- -->\n"
77 + "</a>");
78 }
79 }
--- EOF ---