-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
None
-
1.4.1
-
x86
-
linux
Name: nt126004 Date: 10/14/2002
FULL PRODUCT VERSION :
java version "1.4.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-b21)
Java HotSpot(TM) Client VM (build 1.4.1-b21, mixed mode)
A DESCRIPTION OF THE PROBLEM :
The javadoc inline tag @value writes the constant value as
it is in the documentation. This is a problem if the
constant value contains a html tag. This destroys the html
layout and the documentation is unreadable. So the constant
value should be escaped.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1.create a class with constant field
public class Test {
/**
* the value is {@value}
*/
public static final String HTML_BODY_START_TAG = "<body>";
}
2. create the javadoc documentation of this class
3. look at the javadoc documentation
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public class Test {
/**
* the value is {@value}
*/
public static final String HTML_BODY_START_TAG = "<body>";
}
---------- END SOURCE ----------
(Review ID: 164664)
======================================================================