/* * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. * 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 * @bug 7112427 8012295 8025633 8026567 8061305 8081854 8150130 8162363 * 8167967 8172528 8175200 8178830 8182257 8186332 8182765 8025091 * 8203791 8184205 * @summary Test of the JavaFX doclet features. * @library ../../lib * @modules jdk.javadoc/jdk.javadoc.internal.tool * @build javadoc.tester.* * @run main TestJavaFX */ import javadoc.tester.JavadocTester; public class TestJavaFX extends JavadocTester { public static void main(String... args) throws Exception { TestJavaFX tester = new TestJavaFX(); tester.runTests(); } @Test public void test1() { javadoc("-d", "out1", "-sourcepath", testSrc, "-javafx", "--disable-javafx-strict-checks", "-package", "pkg1"); checkExit(Exit.OK); checkOutput("pkg1/C.html", true, "
getRate()
, \n"
+ "setRate(double)
C.DoubleProperty
"
+ "rate
Timeline
is expected to\n"
+ " be played.Sets the value of the property Property
",
"
Gets the value of the property Property
",
"Property description:",
"
"
+ ""
+ "setTestMethodProperty()
"
+ "paused
Timeline
is expected to\n"
+ " be played. This is the second line.Timeline
is expected to\n"
+ " be played. This is the second line.Timeline
is expected to\n"
+ " be played. This is the second line.C.BooleanProperty | \n",
"|||||||||||||||||
C.DoubleProperty | \n");
checkOutput("pkg1/C.html", false,
"A()",
"|||||||||||||||||
C.BooleanProperty | \n",
"|||||||||||||||||
C.DoubleProperty | \n");
checkOutput("index-all.html", true,
"
Modifier and Type | \n" + "Method | \n" + "Description | \n" + "
---|---|---|
<T> java.lang.Object | \n"
+ ""
+ "alphaProperty"
+ "(java.util.List<T> foo) | \n"
+ "\n" + " |
java.lang.Object | \n"
+ ""
+ "betaProperty() | \n"
+ "\n" + " |
java.util.List<java.util.Set<? super java.lang.Object>>"
+ " | \n"
+ ""
+ "deltaProperty() | \n"
+ "\n" + " |
java.util.List<java.lang.String> | \n"
+ ""
+ "gammaProperty() | \n"
+ "" ); } /* * Force the doclet to emit a warning when processing a synthesized, * DocComment, and ensure that the run succeeds, using the newer * --javafx flag. */ @Test public void test4() { javadoc("-d", "out4", "--javafx", "--disable-javafx-strict-checks", "-Xdoclint:none", "-sourcepath", testSrc, "-package", "pkg4"); checkExit(Exit.OK); // make sure the doclet indeed emits the warning checkOutput(Output.OUT, true, "C.java:0: warning - invalid usage of tag >"); } } |