diff -r b0845717434e -r e7549dcbc4af langtools/test/com/sun/javadoc/testJavaFX/TestJavaFX.java --- a/langtools/test/com/sun/javadoc/testJavaFX/TestJavaFX.java Tue Apr 22 17:41:11 2014 -0700 +++ b/langtools/test/com/sun/javadoc/testJavaFX/TestJavaFX.java Tue Apr 22 17:57:40 2014 -0700 @@ -33,58 +33,56 @@ public class TestJavaFX extends JavadocTester { - private static final String BUG_ID = "7112427"; - private static final String[][] TEST = new String[][] { - {"./" + BUG_ID + "/C.html", + { "C.html", "
See Also:
\n" + "
getRate(), \n" + "setRate(double)
"}, - {"./" + BUG_ID + "/C.html", + { "C.html", "
public final void setRate(double value)
\n" + "
Sets the value of the property rate.
\n" + "
\n" + "
Property description:
" }, - {"./" + BUG_ID + "/C.html", + { "C.html", "
public final double getRate()
\n" + "
Gets the value of the property rate.
\n" + "
\n" + "
Property description:
" }, - {"./" + BUG_ID + "/C.html", + { "C.html", "rate\n" + "
Defines the direction/speed at which the Timeline is expected to"}, - {"./" + BUG_ID + "/C.html", + { "C.html", "Default value:"}, - {"./" + BUG_ID + "/C.html", + { "C.html", "Since:\n" + "
JavaFX 8.0
" }, - {"./" + BUG_ID + "/C.html", + { "C.html", "

Sets the value of the property Property"}, - {"./" + BUG_ID + "/C.html", + { "C.html", "

Gets the value of the property Property"}, - {"./" + BUG_ID + "/C.html", + { "C.html", "Property description:"}, - {"./" + BUG_ID + "/C.html", + { "C.html", "setTestMethodProperty() " }, - {"./" + BUG_ID + "/C.html", + { "C.html", "

isPaused

\n" + "
public final double isPaused()
\n" + "
Gets the value of the property paused.
" }, - {"./" + BUG_ID + "/D.html", + { "D.html", "

Properties inherited from class C

\n" + "paused, rate" }, }; private static final String[][] NO_TEST = new String[][] { - {"./" + BUG_ID + "/C.html", + { "C.html", "A()"}, }; private static final String[] ARGS = new String[] { - "-d", BUG_ID, "-sourcepath", SRC_DIR, "-javafx", + "-d", OUTPUT_DIR, "-sourcepath", SRC_DIR, "-javafx", SRC_DIR + "/C.java", SRC_DIR + "/D.java" }; @@ -97,18 +95,4 @@ tester.run(ARGS, TEST, NO_TEST); tester.printSummary(); } - - /** - * {@inheritDoc} - */ - public String getBugId() { - return BUG_ID; - } - - /** - * {@inheritDoc} - */ - public String getBugName() { - return getClass().getName(); - } }