Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Javadoc template generator

Is there a way to generate Javadoc comments in Eclipse? If so, what is it?

share|improve this question
Closing as dupe because OP indicated finding answer on SO: stackoverflow.com/questions/1777175/… – Kev Aug 29 '11 at 20:29
I tried the alternate answer(2 years ago) and didn't like it, so consider it a dup or not. – antony.trupe Aug 30 '11 at 21:53

marked as duplicate by Kev Aug 29 '11 at 20:28

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 84 down vote accepted

For me the /**<NEWLINE> or Shift-Alt-J approach works best.

I dislike seeing Javadoc comments in source code that have been auto-generated and have not been updated with real content. As far as I am concerned, such javadocs are nothing more than a waste of screen space.

IMO, it is much much better to generate the Javadoc comment skeletons one by one as you are about to fill in the details.

share|improve this answer
4  
To save space, fold it! – Pascal Thivent Nov 22 '09 at 1:18
9  
@Pascal - I'd prefer to delete it/them, or not generate it/them in the first place. IMO, generated javadoc comments add zero value ... unless you count a bogus boost to the comment-to-code ratio as "value". – Stephen C Nov 22 '09 at 2:54
This is what I end up doing. – antony.trupe Aug 30 '11 at 21:54
2  
On a Mac, it's ⌘-alt-J – SteveEdson Jan 11 at 16:41

JAutoDoc

share|improve this answer

Shift-Alt-J is a useful keyboard shortcut in Eclipse for creating Javadoc comment templates.

Invoking the shortcut on a class, method or field declaration will create a Javadoc template:

public int doAction(int i) {
    return i;
}

Pressing Shift-Alt-J on the method declaration gives:

/**
 * @param i
 * @return
 */
public int doAction(int i) {
    return i;
}
share|improve this answer
On a Mac, it's ⌘-alt-J – SteveEdson Jan 11 at 16:41

You mean menu Project -> Generate Javadoc ?

share|improve this answer
That menu item isn't in any of the perspectives I use. – antony.trupe Nov 21 '09 at 23:53
It's on my Eclipse, and the only extra things I've installed are Google Web Toolkit and FindBugs. (This is Ganymede, not Europa. Maybe you need to upgrade?) – Paul Tomblin Nov 21 '09 at 23:56
I only have the gwt perspective, eclipse v 3.5.1 – antony.trupe Nov 21 '09 at 23:58
Maybe you need to install Eclipse for Java Developers or Eclipse for J2EE developers. – Jherico Nov 22 '09 at 0:00
What happens if you go to Preferences->Java->Code Templates and click "restore defaults"? Because I have code templates for comments that includes all the javadoc stuff. – Paul Tomblin Nov 22 '09 at 0:01
show 2 more comments

At a place where you want javadoc, type in /**<NEWLINE> and it will create the template.

share|improve this answer
1. that works, thank. 2. that menu item isn't in any of the perspectives I use. – antony.trupe Nov 21 '09 at 23:59
im interested to know what your perspective is – medopal Nov 22 '09 at 9:49
Generate Javadoc does not generate Javadoc comments. It parses Javadoc comments and generates project documention (usually HTML) – ebelisle Jan 3 '12 at 18:37
this is the answer I was looking for. not sure why it's downvoted. – antony.trupe Mar 19 '12 at 19:09

Not the answer you're looking for? Browse other questions tagged or ask your own question.