8172528: problem generating JavaFX docs
Reviewed-by: ksrini
This commit is contained in:
parent
51e0b0ca26
commit
d084a21c15
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -74,6 +74,11 @@ public class PropertyWriterImpl extends AbstractMemberWriter
|
|||||||
return memberTree;
|
return memberTree;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean showTabs() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 7112427 8012295 8025633 8026567 8061305 8081854 8150130 8162363 8167967
|
* @bug 7112427 8012295 8025633 8026567 8061305 8081854 8150130 8162363 8167967 8172528
|
||||||
* @summary Test of the JavaFX doclet features.
|
* @summary Test of the JavaFX doclet features.
|
||||||
* @author jvalenta
|
* @author jvalenta
|
||||||
* @library ../lib
|
* @library ../lib
|
||||||
@ -133,10 +133,20 @@ public class TestJavaFX extends JavadocTester {
|
|||||||
+ "<dd>11</dd>\n"
|
+ "<dd>11</dd>\n"
|
||||||
+ "<dt><span class=\"simpleTagLabel\">Since:</span></dt>\n"
|
+ "<dt><span class=\"simpleTagLabel\">Since:</span></dt>\n"
|
||||||
+ "<dd>JavaFX 8.0</dd>",
|
+ "<dd>JavaFX 8.0</dd>",
|
||||||
|
"<h3>Property Summary</h3>\n"
|
||||||
|
+ "<table class=\"memberSummary\" summary=\"Property Summary table, listing properties, and an explanation\">\n"
|
||||||
|
+ "<caption><span>Properties</span><span class=\"tabEnd\"> </span></caption>",
|
||||||
"");
|
"");
|
||||||
|
|
||||||
checkOutput("pkg1/C.html", false,
|
checkOutput("pkg1/C.html", false,
|
||||||
"A()");
|
"A()",
|
||||||
|
"<h3>Property Summary</h3>\n"
|
||||||
|
+ "<table class=\"memberSummary\" summary=\"Property Summary table, listing properties, and an explanation\">\n"
|
||||||
|
+ "<caption><span id=\"t0\" class=\"activeTableTab\"><span>All Methods</span><span class=\"tabEnd\"> </span>"
|
||||||
|
+ "</span><span id=\"t2\" class=\"tableTab\"><span><a href=\"javascript:show(2);\">Instance Methods</a>"
|
||||||
|
+ "</span><span class=\"tabEnd\"> </span></span><span id=\"t4\" class=\"tableTab\"><span>"
|
||||||
|
+ "<a href=\"javascript:show(8);\">Concrete Methods</a></span><span class=\"tabEnd\"> </span></span>"
|
||||||
|
+ "</caption>");
|
||||||
|
|
||||||
checkOutput("index-all.html", true,
|
checkOutput("index-all.html", true,
|
||||||
"<div class=\"block\">Gets the value of the property paused.</div>",
|
"<div class=\"block\">Gets the value of the property paused.</div>",
|
||||||
@ -193,7 +203,19 @@ public class TestJavaFX extends JavadocTester {
|
|||||||
+ "</li>\n"
|
+ "</li>\n"
|
||||||
+ "</ul>\n"
|
+ "</ul>\n"
|
||||||
+ "</li>\n"
|
+ "</li>\n"
|
||||||
+ "</ul>");
|
+ "</ul>",
|
||||||
|
"<h3>Property Summary</h3>\n"
|
||||||
|
+ "<table class=\"memberSummary\" summary=\"Property Summary table, listing properties, and an explanation\">\n"
|
||||||
|
+ "<caption><span>Properties</span><span class=\"tabEnd\"> </span></caption>");
|
||||||
|
|
||||||
|
checkOutput("pkg2/Test.html", false,
|
||||||
|
"<h3>Property Summary</h3>\n"
|
||||||
|
+ "<table class=\"memberSummary\" summary=\"Property Summary table, listing properties, and an explanation\">\n"
|
||||||
|
+ "<caption><span id=\"t0\" class=\"activeTableTab\"><span>All Methods</span><span class=\"tabEnd\"> </span>"
|
||||||
|
+ "</span><span id=\"t2\" class=\"tableTab\"><span><a href=\"javascript:show(2);\">Instance Methods</a>"
|
||||||
|
+ "</span><span class=\"tabEnd\"> </span></span><span id=\"t4\" class=\"tableTab\"><span>"
|
||||||
|
+ "<a href=\"javascript:show(8);\">Concrete Methods</a></span><span class=\"tabEnd\"> </span></span>"
|
||||||
|
+ "</caption>");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user