Book a Demo

Author Topic: Operation Notes - Missing @return statement  (Read 3116 times)

mrNiceGuy

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Operation Notes - Missing @return statement
« on: April 22, 2010, 01:43:46 am »
Hello everybody,

we need to generate JavaDoc compliant notes. That works with parameters but not with the return value. Is there a way you can generate full javadoc-compliant notes including the @return line?

We found out that you can add a “@return” in the operation notes field but this adds the @return param before the @params, what’s not an option because of our project guidelines. Plus this isn't well readable.

Has anyone a working template for this?


e.g.

public String retString(String string)

should generate

/**
* @param string some comment
*
*@return this line is not generated
*/