I was wondering if there's such a thing as a single line Javadoc comment, similar to this which works in Doxygen?
which would use the comment to the right of the variable in the Javadoc rather than having to do this:
which takes up more vertical space.
Code:
class Shape
{
int m_Length; /**< The length of the shape. */
int m_Width; /**< The width of the shape. */
...
Code:
class Shape
{
/** The length of the shape. */
int m_Length;
/** The width of the shape. */
int m_Width;
...