From: markt Date: Fri, 17 Dec 2010 21:47:52 +0000 (+0000) Subject: Document the Eclipse compiler errors/warnings settings I am using X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=f9811f14e297198f0f01048588b7ffc3af8201c3;p=tomcat7.0 Document the Eclipse compiler errors/warnings settings I am using git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1050497 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/res/ide-support/eclipse/java-compiler-errors-warnings.txt b/res/ide-support/eclipse/java-compiler-errors-warnings.txt new file mode 100644 index 000000000..c918d657d --- /dev/null +++ b/res/ide-support/eclipse/java-compiler-errors-warnings.txt @@ -0,0 +1,39 @@ +Following settings for Helios Service Release 1 + + +W = Warning +I = Ignore +E = Error + +Code style + - Non-static access to static member - W + - Indirect access to static member - I + - Unqualified access to instance field - I + - Undocumented empty block - I + - Access to a non-accessible member... - I + - Method with a constructor name - W + - Parameter assignment - I + - Non-externalized strings - I +Potential programming errors + - All - W +Name shadowing and conflicts + - Field declaration hides another... - I + - Local variable declaration hides.. - I + - Type parameter hides another type - W + - Method does not override... - W + - Interface method conflicts... - W +Deprecated and restricted API + - Deprecated API - W + (no additional check boxes) + - Forbidden references - E + - Discouraged reference - W +Unnecessary code + - Unnecessary else - I + - The rest - W + (all additional check boxes) +Generic types + - All - W +Annotations + - All - W + (all additional check boxes) + \ No newline at end of file