Could you please help me to configure Checkstyle to warn me if the javadoc comment is empty?
Checkstyle dest not warn me in the following case (javadoc comment is totally missing):
/**
*
*/
public enum MyType{ EQUALS }
I have checked the documentation here, but I could not see anything related this issue.
