2015-11-28 18:52:17 -08:00
|
|
|
/*
|
2019-01-30 16:39:26 +05:30
|
|
|
* Copyright (c) 2003, 2019, 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",
|
|
|
|
"-sourcepath", testSrc,
|
|
|
|
"pkg");
|
|
|
|
checkExit(Exit.OK);
|
|
|
|
|
|
|
|
checkOutput("pkg/Interface.html", true,
|
2019-06-04 16:33:37 +02:00
|
|
|
"<div class=\"memberSignature\"><span class=\"returnType\">int</span> "
|
|
|
|
+ "<span class=\"memberName\">method</span>()</div>",
|
|
|
|
"<div class=\"memberSignature\"><span class=\"modifiers\">static final</span> "
|
|
|
|
+ "<span class=\"returnType\">int</span> <span class=\"memberName\">field</span></div>",
|
2015-11-28 18:52:17 -08:00
|
|
|
// Make sure known implementing class list is correct and omits type parameters.
|
|
|
|
"<dl>\n"
|
|
|
|
+ "<dt>All Known Implementing Classes:</dt>\n"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "<dd><code><a href=\"Child.html\" title=\"class in pkg\">Child"
|
|
|
|
+ "</a></code>, <code><a href=\"Parent.html\" title=\"class in pkg\">Parent"
|
2016-08-16 10:57:13 -07:00
|
|
|
+ "</a></code></dd>\n"
|
2015-11-28 18:52:17 -08:00
|
|
|
+ "</dl>");
|
|
|
|
|
|
|
|
checkOutput("pkg/Child.html", true,
|
|
|
|
// Make sure "All Implemented Interfaces": has substituted type parameters
|
|
|
|
"<dl>\n"
|
|
|
|
+ "<dt>All Implemented Interfaces:</dt>\n"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "<dd><code><a href=\"Interface.html\" title=\"interface in pkg\">"
|
2016-08-16 10:57:13 -07:00
|
|
|
+ "Interface</a><CE></code></dd>\n"
|
2015-11-28 18:52:17 -08:00
|
|
|
+ "</dl>",
|
|
|
|
//Make sure Class Tree has substituted type parameters.
|
2019-04-30 11:58:30 +05:30
|
|
|
"<div class=\"inheritance\" title=\"Inheritance Tree\">java.lang.Object\n"
|
|
|
|
+ "<div class=\"inheritance\"><a href=\"Parent.html\""
|
|
|
|
+ " title=\"class in pkg\">pkg.Parent</a><CE>\n"
|
|
|
|
+ "<div class=\"inheritance\">pkg.Child<CE></div>\n"
|
|
|
|
+ "</div>\n</div>",
|
2015-11-28 18:52:17 -08:00
|
|
|
//Make sure "Specified By" has substituted type parameters.
|
|
|
|
"<dt><span class=\"overrideSpecifyLabel\">Specified by:</span></dt>\n"
|
2018-03-06 10:45:47 -08:00
|
|
|
+ "<dd><code><a href=\"Interface.html#method()\">method</a>"
|
2015-11-28 18:52:17 -08:00
|
|
|
+ "</code> in interface <code>"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "<a href=\"Interface.html\" title=\"interface in pkg\">"
|
|
|
|
+ "Interface</a><<a href=\"Child.html\" title=\"type parameter in Child\">"
|
2015-11-28 18:52:17 -08:00
|
|
|
+ "CE</a>></code></dd>",
|
|
|
|
//Make sure "Overrides" has substituted type parameters.
|
|
|
|
"<dt><span class=\"overrideSpecifyLabel\">Overrides:</span></dt>\n"
|
2018-03-06 10:45:47 -08:00
|
|
|
+ "<dd><code><a href=\"Parent.html#method()\">method</a>"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "</code> in class <code><a href=\"Parent.html\" "
|
|
|
|
+ "title=\"class in pkg\">Parent</a><<a href=\"Child.html\" "
|
2015-11-28 18:52:17 -08:00
|
|
|
+ "title=\"type parameter in Child\">CE</a>></code></dd>");
|
|
|
|
|
|
|
|
checkOutput("pkg/Parent.html", true,
|
|
|
|
//Make sure "Direct Know Subclasses" omits type parameters
|
|
|
|
"<dl>\n"
|
|
|
|
+ "<dt>Direct Known Subclasses:</dt>\n"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "<dd><code><a href=\"Child.html\" title=\"class in pkg\">Child"
|
2016-08-16 10:57:13 -07:00
|
|
|
+ "</a></code></dd>\n"
|
2015-11-28 18:52:17 -08:00
|
|
|
+ "</dl>");
|
|
|
|
|
|
|
|
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.
|
|
|
|
"<dt><span class=\"overrideSpecifyLabel\">Specified by:</span></dt>\n");
|
2017-10-04 10:44:21 -07:00
|
|
|
|
|
|
|
checkOutput("pkg/ClassWithStaticMembers.html", true,
|
2020-01-14 21:17:30 +01:00
|
|
|
"<section class=\"detail\" id=\"f\">\n"
|
|
|
|
+ "<h3>f</h3>\n"
|
2019-06-04 16:33:37 +02:00
|
|
|
+ "<div class=\"memberSignature\"><span class=\"modifiers\">public static</span> "
|
|
|
|
+ "<span class=\"returnType\">int</span> <span class=\"memberName\">f</span></div>\n"
|
2017-10-04 10:44:21 -07:00
|
|
|
+ "<div class=\"block\">A hider field</div>",
|
|
|
|
|
|
|
|
"<td class=\"colFirst\"><code>static void</code></td>\n"
|
|
|
|
+ "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">"
|
2018-03-06 10:45:47 -08:00
|
|
|
+ "<a href=\"#m()\">m</a></span>()</code></th>\n"
|
2017-10-04 10:44:21 -07:00
|
|
|
+ "<td class=\"colLast\">\n"
|
|
|
|
+ "<div class=\"block\">A hider method</div>\n"
|
|
|
|
+ "</td>\n",
|
|
|
|
|
2020-01-14 21:17:30 +01:00
|
|
|
"<section class=\"detail\" id=\"staticMethod()\">\n"
|
|
|
|
+ "<h3>staticMethod</h3>\n"
|
2019-06-04 16:33:37 +02:00
|
|
|
+ "<div class=\"memberSignature\"><span class=\"modifiers\">public static</span> "
|
|
|
|
+ "<span class=\"returnType\">void</span> <span class=\"memberName\">staticMethod</span>()</div>\n"
|
2017-10-04 10:44:21 -07:00
|
|
|
+ "<div class=\"block\"><span class=\"descfrmTypeLabel\">"
|
|
|
|
+ "Description copied from interface: <code>"
|
2018-03-06 10:45:47 -08:00
|
|
|
+ "<a href=\"InterfaceWithStaticMembers.html#staticMethod()\">"
|
2017-10-04 10:44:21 -07:00
|
|
|
+ "InterfaceWithStaticMembers</a></code></span></div>\n"
|
|
|
|
+ "<div class=\"block\">A static method</div>\n");
|
|
|
|
|
|
|
|
checkOutput("pkg/ClassWithStaticMembers.InnerClass.html", true,
|
|
|
|
"<pre>public static class <span class=\"typeNameLabel\">"
|
|
|
|
+ "ClassWithStaticMembers.InnerClass</span>\n"
|
|
|
|
+ "extends java.lang.Object</pre>\n"
|
|
|
|
+ "<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
|
|
|
|
"<span class=\"overrideSpecifyLabel\">Overrides:</span></dt>\n" +
|
|
|
|
"<dd><code><a href=\"GrandParent.html#method1()\">method1</a></code>" +
|
|
|
|
" in class " +
|
|
|
|
"<code><a href=\"GrandParent.html\" title=\"class in pkg1\">GrandParent</a>" +
|
2018-01-22 11:15:51 -08:00
|
|
|
"<<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-01-14 21:17:30 +01:00
|
|
|
"<h2 id=\"nested.classes.inherited.from.class.pkg2.Spliterator\">"
|
|
|
|
+ "Nested classes/interfaces inherited from interface pkg2."
|
2019-03-04 11:19:34 -08:00
|
|
|
+ "<a href=\"Spliterator.html\" title=\"interface in pkg2\">Spliterator</a></h2>\n"
|
2020-01-14 21:17:30 +01:00
|
|
|
+ "<code><a href=\"Spliterator.OfDouble.html\" title=\"interface in pkg2\">"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "Spliterator.OfDouble</a>, <a href=\"Spliterator.OfInt.html\" "
|
2015-11-28 18:52:17 -08:00
|
|
|
+ "title=\"interface in pkg2\">Spliterator.OfInt</a><"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "<a href=\"Spliterator.OfInt.html\" title=\"type parameter in Spliterator.OfInt\">"
|
|
|
|
+ "Integer</a>>, <a href=\"Spliterator.OfPrimitive.html\" title=\"interface in pkg2\">"
|
|
|
|
+ "Spliterator.OfPrimitive</a><<a href=\"Spliterator.OfPrimitive.html\" "
|
2018-06-27 12:56:21 +05:30
|
|
|
+ "title=\"type parameter in Spliterator.OfPrimitive\">T</a>,​<a href=\"Spliterator.OfPrimitive.html\" "
|
|
|
|
+ "title=\"type parameter in Spliterator.OfPrimitive\">T_CONS</a>,​"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "<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=\"Spliterator.OfPrimitive.html\" "
|
2018-06-27 12:56:21 +05:30
|
|
|
+ "title=\"type parameter in Spliterator.OfPrimitive\">T</a>,​"
|
2018-01-22 11:15:51 -08:00
|
|
|
+ "<a href=\"Spliterator.OfPrimitive.html\" title=\"type parameter in Spliterator.OfPrimitive\">"
|
2018-06-27 12:56:21 +05:30
|
|
|
+ "T_CONS</a>,​<a href=\"Spliterator.OfPrimitive.html\" title=\"type parameter in Spliterator.OfPrimitive\">"
|
2015-11-28 18:52:17 -08:00
|
|
|
+ "T_SPLITR</a>>></code>");
|
|
|
|
}
|
|
|
|
}
|