Pattern: Missing @param
description in Javadoc
Issue: -
Checks for missing description within Javadoc @param
tags.
Known limitation: Only the first occurrence of a missing description for a @param
Javadoc comment is found.
Example of violations:
/**
* Return the calculated count of some stuff.
*
* @param startIndex // violation
* @return the full count
* @throws RuntimeException if it senses fear
*/
int countThings(int startIndex) { }