0N/A/*
797N/A * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
553N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
553N/A * or visit www.oracle.com if you need additional information or have any
553N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 4682448 4947464 5029946
0N/A * @summary Verify that the public modifier does not show up in the
0N/A * documentation for public methods, as recommended by the JLS.
0N/A * If A implements I and B extends A, B should be in the list of
0N/A * implementing classes in the documentation for I.
0N/A * @author jamieh
0N/A * @library ../lib/
0N/A * @build JavadocTester
0N/A * @build TestInterface
0N/A * @run main TestInterface
0N/A */
0N/A
0N/Apublic class TestInterface extends JavadocTester {
0N/A
0N/A //Test information.
0N/A private static final String BUG_ID = "4682448-4947464-5029946";
0N/A
0N/A //Javadoc arguments.
0N/A private static final String[] ARGS = new String[] {
288N/A "-d", BUG_ID, "-sourcepath", SRC_DIR, "pkg"
0N/A };
0N/A
0N/A //Input for string search tests.
0N/A private static final String[][] TEST = {
0N/A {BUG_ID + FS + "pkg" + FS + "Interface.html",
765N/A "<pre>int&nbsp;method()</pre>"},
0N/A {BUG_ID + FS + "pkg" + FS + "Interface.html",
765N/A "<pre>static final&nbsp;int field</pre>"},
0N/A
0N/A
0N/A // Make sure known implementing class list is correct and omits type parameters.
0N/A {BUG_ID + FS + "pkg" + FS + "Interface.html",
765N/A "<dl>" + NL + "<dt>All Known Implementing Classes:</dt>" + NL +
765N/A "<dd><a href=\"../pkg/Child.html\" title=\"class in pkg\">Child" +
765N/A "</a>, <a href=\"../pkg/Parent.html\" title=\"class in pkg\">Parent" +
765N/A "</a></dd>" + NL + "</dl>"},
0N/A
0N/A // Make sure "All Implemented Interfaces": has substituted type parameters
0N/A {BUG_ID + FS + "pkg" + FS + "Child.html",
765N/A "<dl>" + NL + "<dt>All Implemented Interfaces:</dt>" + NL +
765N/A "<dd><a href=\"../pkg/Interface.html\" title=\"interface in pkg\">" +
765N/A "Interface</a>&lt;T&gt;</dd>" + NL + "</dl>"
0N/A },
0N/A //Make sure Class Tree has substituted type parameters.
0N/A {BUG_ID + FS + "pkg" + FS + "Child.html",
765N/A "<ul class=\"inheritance\">" + NL + "<li>java.lang.Object</li>" + NL +
765N/A "<li>" + NL + "<ul class=\"inheritance\">" + NL +
765N/A "<li><a href=\"../pkg/Parent.html\" title=\"class in pkg\">" +
765N/A "pkg.Parent</a>&lt;T&gt;</li>" + NL + "<li>" + NL +
765N/A "<ul class=\"inheritance\">" + NL + "<li>pkg.Child&lt;T&gt;</li>" + NL +
765N/A "</ul>" + NL + "</li>" + NL + "</ul>" + NL + "</li>" + NL + "</ul>"
0N/A },
0N/A //Make sure "Direct Know Subclasses" omits type parameters
0N/A {BUG_ID + FS + "pkg" + FS + "Parent.html",
765N/A "<dl>" + NL + "<dt>Direct Known Subclasses:</dt>" + NL +
765N/A "<dd><a href=\"../pkg/Child.html\" title=\"class in pkg\">Child" +
765N/A "</a></dd>" + NL + "</dl>"
0N/A },
0N/A //Make sure "Specified By" has substituted type parameters.
0N/A {BUG_ID + FS + "pkg" + FS + "Child.html",
765N/A "<dt><strong>Specified by:</strong></dt>" + NL +
765N/A "<dd><code><a href=\"../pkg/Interface.html#method()\">method</a>" +
765N/A "</code>&nbsp;in interface&nbsp;<code>" +
765N/A "<a href=\"../pkg/Interface.html\" title=\"interface in pkg\">" +
765N/A "Interface</a>&lt;<a href=\"../pkg/Child.html\" title=\"type parameter in Child\">" +
765N/A "T</a>&gt;</code></dd>"
0N/A },
0N/A //Make sure "Overrides" has substituted type parameters.
0N/A {BUG_ID + FS + "pkg" + FS + "Child.html",
765N/A "<dt><strong>Overrides:</strong></dt>" + NL +
765N/A "<dd><code><a href=\"../pkg/Parent.html#method()\">method</a>" +
765N/A "</code>&nbsp;in class&nbsp;<code><a href=\"../pkg/Parent.html\" " +
765N/A "title=\"class in pkg\">Parent</a>&lt;<a href=\"../pkg/Child.html\" " +
765N/A "title=\"type parameter in Child\">T</a>&gt;</code></dd>"
0N/A },
0N/A };
0N/A private static final String[][] NEGATED_TEST = {
0N/A {BUG_ID + FS + "pkg" + FS + "Interface.html",
765N/A "public int&nbsp;method()"},
0N/A {BUG_ID + FS + "pkg" + FS + "Interface.html",
765N/A "public static final&nbsp;int field"},
0N/A };
0N/A
0N/A /**
0N/A * The entry point of the test.
0N/A * @param args the array of command line arguments.
0N/A */
0N/A public static void main(String[] args) {
0N/A TestInterface tester = new TestInterface();
0N/A run(tester, ARGS, TEST, NEGATED_TEST);
0N/A tester.printSummary();
0N/A }
0N/A
0N/A /**
0N/A * {@inheritDoc}
0N/A */
0N/A public String getBugId() {
0N/A return BUG_ID;
0N/A }
0N/A
0N/A /**
0N/A * {@inheritDoc}
0N/A */
0N/A public String getBugName() {
0N/A return getClass().getName();
0N/A }
0N/A}