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..
- what kind of javadoc are you creating, that you need word to create html? if you are not coming along with P and LI you should probably consider writing a real documentation instead of writing tons of javascript. in my optionion, tests, READMEs and example code are way better documentation than bloated javadoc.phoet– phoet2010-08-30 09:37:53 +00:00Commented Aug 30, 2010 at 9:37
- well formated jdoc just looks better and is easier to read..Simon– Simon2010-08-30 12:21:38 +00:00Commented Aug 30, 2010 at 12:21
Add a comment |
2 Answers
JDocEditor is an Eclipse plugin that lets you write Javadoc in a WYSIWYG editor window: http://www.certiv.net/projects/jdoceditor.html
Comments
You can probably use this
2 Comments
python dude
Nice one, just what I always needed :)
Simon
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..