2015-11-28 18:52:17 -08:00
|
|
|
/*
|
2021-01-25 21:45:54 +00:00
|
|
|
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
|
2015-11-28 18:52:17 -08:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @test
|
2017-10-04 10:44:21 -07:00
|
|
|
* @bug 4682448 4947464 5029946 8025633 8026567 8035473 8139101 8175200
|
2018-06-27 12:56:21 +05:30
|
|
|
8186332 8186703 8182765 8187288
|
2015-11-28 18:52:17 -08:00
|
|
|
* @summary Verify that the public modifier does not show up in the
|
|
|
|
* documentation for public methods, as recommended by the JLS.
|
|
|
|
* If A implements I and B extends A, B should be in the list of
|
|
|
|
* implementing classes in the documentation for I.
|
2018-12-21 10:38:33 -08:00
|
|
|
* @library ../../lib
|
8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Jan Lahoda <jan.lahoda@oracle.com>
Co-authored-by: Vicente Romero <vicente.romero@oracle.com>
Co-authored-by: Andreas Lundblad <andreas.lundblad@oracle.com>
Co-authored-by: Andrey Nazarov <andrey.x.nazarov@oracle.com>
Co-authored-by: Chris Hegarty <chris.hegarty@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: Kumar Srinivasan <kumar.x.srinivasan@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: jjg, jlahoda, vromero, mcimadamore, bpatel, ksrini, darcy, anazarov, dfuchs
2016-03-17 19:04:28 +00:00
|
|
|
* @modules jdk.javadoc/jdk.javadoc.internal.tool
|
2018-12-21 10:38:33 -08:00
|
|
|
* @build javadoc.tester.*
|
2015-11-28 18:52:17 -08:00
|
|
|
* @run main TestInterface
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-08-16 10:57:13 -07:00
|
|
|
* TODO: make it Interface<PE> ie. fix all ParameterTypes, likely should get
|
2015-11-28 18:52:17 -08:00
|
|
|
* fixed when Doc is replace by j.l.m, but meanwhile this test has been adjusted
|
|
|
|
* take the current format this is better than @ignore because we can follow the
|
|
|
|
* differences as the work progress.
|
|
|
|
*
|
|
|
|
* The consensus is that we should have something as follows:
|
|
|
|
* In Child.html
|
|
|
|
* Specified by: method in interface<IE>
|
|
|
|
* Overrides: method in class Parent<PE>
|
|
|
|
* In otherwords the TypeParameter in scope should be used ex: Interface<IE>, Parent<PE>
|
|
|
|
and Child<CE>
|
|
|
|
*/
|
|
|
|
|
2018-12-21 10:38:33 -08:00
|
|
|
import javadoc.tester.JavadocTester;
|
|
|
|
|
2015-11-28 18:52:17 -08:00
|
|
|
public class TestInterface extends JavadocTester {
|
|
|
|
|
|
|
|
public static void main(String... args) throws Exception {
|
|
|
|
TestInterface tester = new TestInterface();
|
|
|
|
tester.runTests();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2018-12-21 10:38:33 -08:00
|
|
|
public void test() {
|
2015-11-28 18:52:17 -08:00
|
|
|
javadoc("-d", "out",
|
2020-10-07 13:08:34 +00:00
|
|
|
"--no-platform-links",
|
2015-11-28 18:52:17 -08:00
|
|
|
"-sourcepath", testSrc,
|
|
|
|
"pkg");
|
|
|
|
checkExit(Exit.OK);
|
|
|
|
|
|
|
|
checkOutput("pkg/Interface.html", true,
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
2020-11-27 19:12:31 +00:00
|
|
|
<div class="member-signature"><span class="return-type">int</span> <span class="element-name">method</span>()</div>""",
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<div class="member-signature"><span class="modifiers">static final</span> <\
|
2020-11-27 19:12:31 +00:00
|
|
|
span class="return-type">int</span> <span class="element-name">field</span></div>""",
|
2015-11-28 18:52:17 -08:00
|
|
|
// Make sure known implementing class list is correct and omits type parameters.
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<dl class="notes">
|
|
|
|
<dt>All Known Implementing Classes:</dt>
|
|
|
|
<dd><code><a href="Child.html" title="class in pkg">Child</a></code>, <code><a h\
|
|
|
|
ref="Parent.html" title="class in pkg">Parent</a></code></dd>
|
|
|
|
</dl>""");
|
2015-11-28 18:52:17 -08:00
|
|
|
|
|
|
|
checkOutput("pkg/Child.html", true,
|
|
|
|
// Make sure "All Implemented Interfaces": has substituted type parameters
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<dl class="notes">
|
|
|
|
<dt>All Implemented Interfaces:</dt>
|
|
|
|
<dd><code><a href="Interface.html" title="interface in pkg">Interface</a><CE></code></dd>
|
|
|
|
</dl>""",
|
2015-11-28 18:52:17 -08:00
|
|
|
//Make sure Class Tree has substituted type parameters.
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<div class="inheritance" title="Inheritance Tree">java.lang.Object
|
|
|
|
<div class="inheritance"><a href="Parent.html" title="class in pkg">pkg.Parent</a><CE>
|
|
|
|
<div class="inheritance">pkg.Child<CE></div>
|
|
|
|
</div>
|
|
|
|
</div>""",
|
2015-11-28 18:52:17 -08:00
|
|
|
//Make sure "Specified By" has substituted type parameters.
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<dt>Specified by:</dt>
|
|
|
|
<dd><code><a href="Interface.html#method()">method</a></code> in interface&\
|
|
|
|
nbsp;<code><a href="Interface.html" title="interface in pkg">Interface</a><<a\
|
|
|
|
href="Child.html" title="type parameter in Child">CE</a>></code></dd>""",
|
2015-11-28 18:52:17 -08:00
|
|
|
//Make sure "Overrides" has substituted type parameters.
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<dt>Overrides:</dt>
|
|
|
|
<dd><code><a href="Parent.html#method()">method</a></code> in class <c\
|
|
|
|
ode><a href="Parent.html" title="class in pkg">Parent</a><<a href="Child.html\
|
|
|
|
" title="type parameter in Child">CE</a>></code></dd>""");
|
2015-11-28 18:52:17 -08:00
|
|
|
|
|
|
|
checkOutput("pkg/Parent.html", true,
|
2020-02-28 12:46:58 -08:00
|
|
|
//Make sure "Direct Known Subclasses" omits type parameters
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<dl class="notes">
|
|
|
|
<dt>Direct Known Subclasses:</dt>
|
|
|
|
<dd><code><a href="Child.html" title="class in pkg">Child</a></code></dd>
|
|
|
|
</dl>""");
|
2015-11-28 18:52:17 -08:00
|
|
|
|
|
|
|
checkOutput("pkg/Interface.html", false,
|
2018-03-06 10:45:47 -08:00
|
|
|
"public int method--",
|
2015-11-28 18:52:17 -08:00
|
|
|
"public static final int field");
|
2016-12-05 15:08:24 -08:00
|
|
|
|
2017-10-04 10:44:21 -07:00
|
|
|
checkOutput("pkg/ClassWithStaticMembers.html", false,
|
2016-12-05 15:08:24 -08:00
|
|
|
//Make sure "Specified By" does not appear on class documentation when
|
|
|
|
//the method is a static method in the interface.
|
2020-02-27 12:16:03 -08:00
|
|
|
"<dt>Specified by:</dt>\n");
|
2017-10-04 10:44:21 -07:00
|
|
|
|
|
|
|
checkOutput("pkg/ClassWithStaticMembers.html", true,
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<section class="detail" id="f">
|
|
|
|
<h3>f</h3>
|
|
|
|
<div class="member-signature"><span class="modifiers">public static</span> \
|
2020-11-27 19:12:31 +00:00
|
|
|
<span class="return-type">int</span> <span class="element-name">f</span></div>
|
2020-05-05 13:02:30 -07:00
|
|
|
<div class="block">A hider field</div>""",
|
|
|
|
|
|
|
|
"""
|
2021-01-25 21:45:54 +00:00
|
|
|
<div class="col-first even-row-color method-summary-table method-summary-table-t\
|
|
|
|
ab1 method-summary-table-tab4"><code>static void</code></div>
|
|
|
|
<div class="col-second even-row-color method-summary-table method-summary-table-\
|
|
|
|
tab1 method-summary-table-tab4"><code><span class="member-name-link"><a href="#m\
|
|
|
|
()">m</a></span>()</code></div>
|
|
|
|
<div class="col-last even-row-color method-summary-table method-summary-table-ta\
|
|
|
|
b1 method-summary-table-tab4">
|
2020-05-05 13:02:30 -07:00
|
|
|
<div class="block">A hider method</div>
|
2020-10-12 09:36:43 +00:00
|
|
|
</div>
|
2020-05-05 13:02:30 -07:00
|
|
|
""",
|
|
|
|
|
|
|
|
"""
|
|
|
|
<section class="detail" id="staticMethod()">
|
|
|
|
<h3>staticMethod</h3>
|
|
|
|
<div class="member-signature"><span class="modifiers">public static</span> \
|
2020-11-27 19:12:31 +00:00
|
|
|
<span class="return-type">void</span> <span class="element-name">staticMethod</span\
|
|
|
|
>()</div>
|
2020-05-05 13:02:30 -07:00
|
|
|
<div class="block"><span class="descfrm-type-label">Description copied from inte\
|
|
|
|
rface: <code><a href="InterfaceWithStaticMembers.html#staticMethod()">Inter\
|
|
|
|
faceWithStaticMembers</a></code></span></div>
|
|
|
|
<div class="block">A static method</div>
|
|
|
|
""");
|
2017-10-04 10:44:21 -07:00
|
|
|
|
|
|
|
checkOutput("pkg/ClassWithStaticMembers.InnerClass.html", true,
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
2020-11-27 19:12:31 +00:00
|
|
|
<div class="type-signature"><span class="modifiers">public static class </span><\
|
|
|
|
span class="element-name type-name-label">ClassWithStaticMembers.InnerClass</span>
|
|
|
|
<span class="extends-implements">extends java.lang.Object</span></div>
|
2020-05-05 13:02:30 -07:00
|
|
|
<div class="block">A hider inner class</div>""");
|
2015-11-28 18:52:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2018-12-21 10:38:33 -08:00
|
|
|
public void test1() {
|
2015-11-28 18:52:17 -08:00
|
|
|
javadoc("-d", "out-1",
|
|
|
|
"-sourcepath", testSrc,
|
|
|
|
"pkg1");
|
|
|
|
checkExit(Exit.OK);
|
|
|
|
|
2018-03-06 10:45:47 -08:00
|
|
|
checkOutput("pkg1/Child.html", true,
|
|
|
|
// Ensure the correct Overrides in the inheritance hierarchy is reported
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<dt>Overrides:</dt>
|
|
|
|
<dd><code><a href="GrandParent.html#method1()">method1</a></code> in class&\
|
|
|
|
nbsp;<code><a href="GrandParent.html" title="class in pkg1">GrandParent</a><<\
|
|
|
|
a href="Child.html" title="type parameter in Child">CE</a>></code>""");
|
2015-11-28 18:52:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2018-12-21 10:38:33 -08:00
|
|
|
public void test2() {
|
2015-11-28 18:52:17 -08:00
|
|
|
javadoc("-d", "out-2",
|
|
|
|
"-sourcepath", testSrc,
|
|
|
|
"pkg2");
|
|
|
|
|
|
|
|
checkExit(Exit.OK);
|
|
|
|
|
|
|
|
checkOutput("pkg2/Spliterator.OfDouble.html", true,
|
|
|
|
// Ensure the correct type parameters are displayed correctly
|
2020-05-05 13:02:30 -07:00
|
|
|
"""
|
|
|
|
<h2 id="nested.classes.inherited.from.class.pkg2.Spliterator">Nested classes/int\
|
|
|
|
erfaces inherited from interface pkg2.<a href="Spliterator.html" title="int\
|
|
|
|
erface in pkg2">Spliterator</a></h2>
|
|
|
|
<code><a href="Spliterator.OfDouble.html" title="interface in pkg2">Spliterator.\
|
|
|
|
OfDouble</a>, <a href="Spliterator.OfInt.html" title="interface in pkg2">Spliter\
|
|
|
|
ator.OfInt</a><<a href="Spliterator.OfInt.html" title="type parameter in Spli\
|
|
|
|
terator.OfInt">Integer</a>>, <a href="Spliterator.OfPrimitive.html" title="in\
|
|
|
|
terface in pkg2">Spliterator.OfPrimitive</a><<a href="Spliterator.OfPrimitive\
|
|
|
|
.html" title="type parameter in Spliterator.OfPrimitive">T</a>,​<a href="S\
|
|
|
|
pliterator.OfPrimitive.html" title="type parameter in Spliterator.OfPrimitive">T\
|
|
|
|
_CONS</a>,​<a href="Spliterator.OfPrimitive.html" title="type parameter in\
|
|
|
|
Spliterator.OfPrimitive">T_SPLITR</a> extends <a href="Spliterator.OfPrimitive.\
|
|
|
|
html" title="interface in pkg2">Spliterator.OfPrimitive</a><<a href="Splitera\
|
|
|
|
tor.OfPrimitive.html" title="type parameter in Spliterator.OfPrimitive">T</a>,&#\
|
|
|
|
8203;<a href="Spliterator.OfPrimitive.html" title="type parameter in Spliterator\
|
|
|
|
.OfPrimitive">T_CONS</a>,​<a href="Spliterator.OfPrimitive.html" title="ty\
|
|
|
|
pe parameter in Spliterator.OfPrimitive">T_SPLITR</a>>></code>""");
|
2015-11-28 18:52:17 -08:00
|
|
|
}
|
|
|
|
}
|