views:

226

answers:

1

Hi. Is it possible to set up Intellij to generate javadoc for methods and classes, automatically, with @author and @since date ?
I had this feature in Eclipse.
I know, that files have templates and also i can manually semi-automatically add javadoc to selected method/class. But i want the generation to be automatic for every generated method/class/enum/interface/field etc.
This is useful for e.g. "extract method", "override/implement", "create getter/setter" etc.
This would save hundreds of manual actions.
I'm using IntelliJ Idea 9.0 BETA Community Edition, #IC-90.96.
TIA.

+1  A: 

It's not possible at the moment. You may want to Vote for IDEABKL-1787.

CrazyCoder
Thanks. That's a weird ommision by JetBrains. I will vote on friday. But the ticket does not concern _automatically_ adding javadoc for generated stuff. Maybe there is a plugin for this and that?
karolrvn
IDEA doesn't generate JavaDoc stubs automatically, only when you type /** and press Enter. There is an old IDEA doc plug-in not compatible with the recent IDEA versions: http://plugins.intellij.net/plugin/?id=952 . Maybe someone will rewrite it.
CrazyCoder