A doxygen eclipse plugIn automatically generating stub documentation? [closed]

A different (better) approach than my previous answer:
In Window->Preferences->C/C++->Editor,
In the right tab look for “Documentation tool comments”, and in “Workspace default” set doxygen.

Now you can type /** above a function and press return.

/**
int foo(int bar);

becomes

/**
 * 
 * @param bar
 * @return
 */
int foo(int bar);

Leave a Comment