Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Javadoc question

Status
Not open for further replies.

Madere

Technical User
Apr 14, 2003
85
GB
We are using java JDK 1.3.1_02 and I have am problem with the javadoc. We are creating multiple document lines in the java code (in the same block), the javadoc generator makes only one line of it (so without any Carriage return/Line feeds).
But I want the lines exactly as they are in the code.
Does anyone have an idea how to solve this? Is there an commandline option?
Were to download a newer/better version of the javadoc.exe?
Upgrading to a newer version of JDK is not an option. Only Javadoc may be upgraded.
Thanks,
Madere.
 
An example will be useful but if you refer to javadoc formatting, you can use many HTML formatter like:
* <br> - Will &quot;break&quot; the line (insert a new line).
* <ul>
<li> bullet1
<li> bullet2
</ul> - Will create a bullet list.
* etc.

 
Remember that javadoc is just an HTML generator, so any HTML syntax is valid ...
 
Thanks guys,

I will use this information.

Madere.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top