Making changes to standard Javadoc Output
I am new to using Javadoc and i have a few queries.
1) I need to includeexamples in the Javadoc output..How do i do that?
2) Also if i have toadd taglets or doclets, what syntax do i have to use when usingANT?
3) How do i change theframe structure of the standard Javadoc output?
1) Sun just includes examples in the main comment, ahead of the first block tag.
2) You could add an @example tag and Example taglet. Then it would have its own heading generated automatically and you could force a consistent style (preformatted text with gray background, perhaps). I don't know offhand how to do this in ANT.
3) Change the frames how? If you don't want frames, don't use index.html. There's no option to change the number of frames or targets -- you would need to modify the source code.
-Doug