views:

26

answers:

2

im looking for a small plugin which let me create formated javadoc. at the moment im doing it with word (or http://tinymce.moxiecode.com/examples/full.php ) and save the text as a html file which then can be used but i think there must be a easier solution to create nice looking java doc..

+1  A: 

You can probably use this

http://jautodoc.sourceforge.net/

Kamal
Nice one, just what I always needed :)
python dude
some of the features of jautodoc produce absolutly superfluous jdoc like "The class MyClass" for a class myClass. i would not recommend it for such things..
Sponge
+1  A: 

JDocEditor is an Eclipse plugin that lets you write Javadoc in a WYSIWYG editor window: http://www.certiv.net/projects/jdoceditor.html

python dude