2004-02-25 02:30:34 AM jbuilder0
Is there an easy and reliable way to add javadoc documentation to a class?
(Visual Cafe Enterprise Edition has a utility for creating
javadoc comments for a class so you don't have to do this
manually)
Gillmer J. Derge (TeamB)
Java Developer
2004-02-25 02:37:25 AM
Re:how to add javadoc to class
Name wrote:
Quote
Is there an easy and reliable way to add javadoc documentation to a class?
If you type
/**<enter>
JBuilder will fill in a blank template that includes any necessary
@param, @return, and @throw tags. I don't know if you're after
something more than that. It seems like it would take some fairly
advanced AI for it to write useful documentation for you.
--
Gillmer J. Derge (TeamB)
Shankar Unni
Java Developer
2004-02-25 08:26:29 AM
Re:how to add javadoc to class
Gillmer J. Derge (TeamB) wrote:
Quote
If you type
/**<enter>
JBuilder will fill in a blank template [...]
Also, in JBX (even in Foundation), right-clicking on a method, class or
object, and selecting "Edit Javadoc for ...", brings up a dialog that
allows you to enter this data in a more structured fashion, if you so
choose..