-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
11, 17, 21, 22
-
generic
-
generic
A DESCRIPTION OF THE PROBLEM :
Mark-up in the doc comment of a class is copied in an inconsistent way into the survey tables "allclasses-index.html" and "index-all.html"
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
create test/src/testpackage/Testclass.java as
---------------------------------------------------
package testpackage ;
/** <div class="XXXXX"><b>This is the first sentence.
* This is the second sentence.</b></div>
*/
public class Testclass{}
----------------------------------------------------------
go to test/doc and execute
----------------------------------------------------------
javadoc -sourcepath ../src -d . -docfilessubdirs testpackage
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Sensible mark-up in the survey tables "allclasses-index.html" and "index-all.html"
ACTUAL -
doc/testpackage/Test.html will show
--------------------------------------------------------
<div class="block"><div class="XXXXX"><b>This is the first sentence.</b>
This is the second sentence.
----------------------------------------------------------
but doc/allclasses-index.html and index-all.html show
----------------------------------------------------------
<div class="block"><b>This is the first sentence.</div>
---------- BEGIN SOURCE ----------
package testpackage ;
/** <div class="XXXXX"><b>This is the first sentence.
* This is the second sentence.</b></div>
*/
public class Testclass{}
---------- END SOURCE ----------
FREQUENCY : always
Mark-up in the doc comment of a class is copied in an inconsistent way into the survey tables "allclasses-index.html" and "index-all.html"
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
create test/src/testpackage/Testclass.java as
---------------------------------------------------
package testpackage ;
/** <div class="XXXXX"><b>This is the first sentence.
* This is the second sentence.</b></div>
*/
public class Testclass{}
----------------------------------------------------------
go to test/doc and execute
----------------------------------------------------------
javadoc -sourcepath ../src -d . -docfilessubdirs testpackage
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Sensible mark-up in the survey tables "allclasses-index.html" and "index-all.html"
ACTUAL -
doc/testpackage/Test.html will show
--------------------------------------------------------
<div class="block"><div class="XXXXX"><b>This is the first sentence.</b>
This is the second sentence.
----------------------------------------------------------
but doc/allclasses-index.html and index-all.html show
----------------------------------------------------------
<div class="block"><b>This is the first sentence.</div>
---------- BEGIN SOURCE ----------
package testpackage ;
/** <div class="XXXXX"><b>This is the first sentence.
* This is the second sentence.</b></div>
*/
public class Testclass{}
---------- END SOURCE ----------
FREQUENCY : always