TestInterface.java revision 288
0N/A/*
0N/A * Copyright 2003-2004 Sun Microsystems, Inc. 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 *
0N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A * CA 95054 USA or visit www.sun.com if you need additional information or
0N/A * have any 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",
181N/A "int <STRONG>method</STRONG>()"},
0N/A {BUG_ID + FS + "pkg" + FS + "Interface.html",
181N/A "static final int <STRONG>field</STRONG>"},
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",
232N/A "<DT><STRONG>All Known Implementing Classes:</STRONG></DT> " +
0N/A "<DD><A HREF=\"../pkg/Child.html\" " +
0N/A "title=\"class in pkg\">Child</A>, " +
0N/A "<A HREF=\"../pkg/Parent.html\" title=\"class in pkg\">" +
0N/A "Parent</A></DD>"},
0N/A
0N/A // Make sure "All Implemented Interfaces": has substituted type parameters
0N/A {BUG_ID + FS + "pkg" + FS + "Child.html",
232N/A "<STRONG>All Implemented Interfaces:</STRONG></DT> <DD>" +
232N/A "<A HREF=\"../pkg/Interface.html\" title=\"interface in pkg\">" +
232N/A "Interface</A>&lt;T&gt;"
0N/A },
0N/A //Make sure Class Tree has substituted type parameters.
0N/A {BUG_ID + FS + "pkg" + FS + "Child.html",
0N/A "<PRE>" + NL +
0N/A "java.lang.Object" + NL +
0N/A " <IMG SRC=\"../resources/inherit.gif\" ALT=\"extended by \"><A HREF=\"../pkg/Parent.html\" title=\"class in pkg\">pkg.Parent</A>&lt;T&gt;" + NL +
181N/A " <IMG SRC=\"../resources/inherit.gif\" ALT=\"extended by \"><STRONG>pkg.Child&lt;T&gt;</STRONG>" + NL +
0N/A "</PRE>"
0N/A },
0N/A //Make sure "Direct Know Subclasses" omits type parameters
0N/A {BUG_ID + FS + "pkg" + FS + "Parent.html",
232N/A "<STRONG>Direct Known Subclasses:</STRONG></DT> <DD><A HREF=\"../pkg/Child.html\" title=\"class in pkg\">Child</A>"
0N/A },
0N/A //Make sure "Specified By" has substituted type parameters.
0N/A {BUG_ID + FS + "pkg" + FS + "Child.html",
232N/A "<STRONG>Specified by:</STRONG></DT><DD><CODE><A HREF=\"../pkg/Interface.html#method()\">method</A></CODE> in interface <CODE><A HREF=\"../pkg/Interface.html\" title=\"interface in pkg\">Interface</A>&lt;<A HREF=\"../pkg/Child.html\" title=\"type parameter in Child\">T</A>&gt;</CODE>"
0N/A },
0N/A //Make sure "Overrides" has substituted type parameters.
0N/A {BUG_ID + FS + "pkg" + FS + "Child.html",
232N/A "<STRONG>Overrides:</STRONG></DT><DD><CODE><A HREF=\"../pkg/Parent.html#method()\">method</A></CODE> in class <CODE><A HREF=\"../pkg/Parent.html\" title=\"class in pkg\">Parent</A>&lt;<A HREF=\"../pkg/Child.html\" title=\"type parameter in Child\">T</A>&gt;</CODE>"
0N/A },
0N/A };
0N/A private static final String[][] NEGATED_TEST = {
0N/A {BUG_ID + FS + "pkg" + FS + "Interface.html",
181N/A "public int <STRONG>method</STRONG>()"},
0N/A {BUG_ID + FS + "pkg" + FS + "Interface.html",
181N/A "public static final int <STRONG>field</STRONG>"},
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}