Javadoc generation

Why doesn’t java code generation generate the javadoc for method
parameters?

If I have a class c with method m and argument a (all with documentation
provided in the model), the documentation for the method in the generated class will look like:

/**
*Method doc …
*/

instead of

/**
*Method doc …
*@param a Argument doc …
*/

It would be quite useful to carry the argument doc into the generated
class.

Dear ssl,

We will consider your suggestion. Thank you very much.

Regards,

Antony.

One addition if you do decide to implement this feature:

Generate the javadoc @returns if the method returns something
other than void.