I figured with 3.0 out now, maybe the JavaDoc warnings would be
working, but I'm still seeing the same problem. Here is an explanation:
1. I turn on the warnings at all three levels in the preferences pane.
2. I go back to the source and see a warning about this block of code:
class CastCountingVisitor extends ASTVisitor {
/*
* (non-Javadoc)
*
* @see
org.eclipse.jdt.core.dom.ASTVisitor#visit(org.eclipse.jdt.core.dom.CastExpression)
*/
public boolean visit(CastExpression node) {
nCasts++;
return super.visit(node);
}