I have Eclipse configured to display warnings about missing comments and javadoc tags for public items. This is very useful for me so that my code is well documented.
But sometimes I have a class where I have several constants describing, for example, DFA states or something like that. There is no need to document these constants because they are self-evident.
So, I added @SuppressWarnings ("javadoc") annotation to the class , and here is my point - Eclipse does not take into account annotation and still shows warnings about missing javadocs ..
@SuppressWarnings ("all") does the job, but it has side effects that are not desirable; -)
Are you experiencing the same problem? Is this a bug or am I just having something unconfigured? Is there a workaround? Or is it fixed in newer versions?
PS: I am using Version: 3.3.2 Build ID: M20080221-1800
source
share