Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automatic documentation tool for eclipse Java [closed]

is there an automatic documentation tool for eclipse? (Like the Ghost Doc Tool) I'm working in Java and i want a reccomended tool.

thanks

like image 421
Adibe7 Avatar asked Dec 12 '22 13:12

Adibe7


2 Answers

Found a nice tool http://jautodoc.sourceforge.net/

like image 60
Adibe7 Avatar answered Dec 30 '22 18:12

Adibe7


It's built-in.

Just type /** [enter] above a method and it will autocomplete the javadoc. Then just use the javadoc tool to generate the html documentation.

Obviously, all useful docs have to be written by hand.

like image 21
Joeri Hendrickx Avatar answered Dec 30 '22 19:12

Joeri Hendrickx