Book a Demo

Author Topic: Problem with JAVADOC style in C++ generated code  (Read 2419 times)

nasahl

  • EA Novice
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
Problem with JAVADOC style in C++ generated code
« on: April 23, 2010, 04:26:21 pm »
Hello,
in our project we have the convention to document an operation

bool f(bool mode, int count) throw (int, char);

with such a comment block

      /**
       * Documentation of function f
       *
       * @param mode    Documentation for parameter 'mode'
       * @param count    Documentation for parameter 'count'
       * @return   Documentation for the boolean return value
       * @exception int,
       * @exception char
       */

The JAVADOC comment style returns s.th like this

      /**
       * Documentation of function f
       *
       * @param mode    Documentation for parameter 'mode'
       * @param count    Documentation for parameter 'count'
       * @exception (int,
       * @exception char)
       */

Is there a way to adapt the JAVADOC template so that the paranthesis in the exception lines doesn't occur anymore?

Christof