>Window->Show View->Other->Java->JavaDoc
Wow! That is so useful. I am always doing muddled Javadoc with < and
> sprinkled in it.
Then when I do it properly, with <li> etc. the stuff becomes
unreadable.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
mdares - 09 Feb 2006 12:16 GMT
Thanks everyone! This is exactly what I was looking for!
Matthew
Boris Gorjan - 09 Feb 2006 12:41 GMT
>>Window->Show View->Other->Java->JavaDoc
>
[quoted text clipped - 4 lines]
> Then when I do it properly, with <li> etc. the stuff becomes
> unreadable.
When you find out that every jar in (Project) Properties -> Java Build Path ->
Libraries has a possibility of specifying its source and javadoc, this feature
becomes even more useful.
Eclipse has many such feaures. One must just take time and go through them: Help
-> *. Otherwise you only use, say, 10% of Eclipses capabilities.
This also might come in handy: http://www.books-download.com/?cat=Eclipse-(105)
Oliver Wong - 09 Feb 2006 17:32 GMT
>>Window->Show View->Other->Java->JavaDoc
>
[quoted text clipped - 3 lines]
> Then when I do it properly, with <li> etc. the stuff becomes
> unreadable.
What's annoying is that Eclipse seems to have a bug when formatting comments
containing <pre></pre> tags: It keeps indenting the comments by one every
time you ask Eclipse to do the formatting. E.g.
<0 formats>
/**
* <pre>
* Hello World!
* </pre>
*/
<0 formats>
becomes
<1 format>
/**
* <pre>
* Hello World!
* </pre>
*/
<1 format>
and then
<2 formats>
/**
* <pre>
* Hello World!
* </pre>
*/
<2 formats>
and so on indefinitely.
- Oliver
Roedy Green - 09 Feb 2006 21:42 GMT
>What's annoying is that Eclipse seems to have a bug when formatting comments
>containing <pre></pre> tags: It keeps indenting the comments by one every
>time you ask Eclipse to do the formatting. E.g.
I reported that bug and they said they already knew about it. I guess
it is fairly low priority to fix. Watch what happens if you don't
balance your HTML tags.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.