Document the Eclipse compiler errors/warnings settings I am using
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 17 Dec 2010 21:47:52 +0000 (21:47 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 17 Dec 2010 21:47:52 +0000 (21:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1050497 13f79535-47bb-0310-9956-ffa450edef68

res/ide-support/eclipse/java-compiler-errors-warnings.txt [new file with mode: 0644]

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 (file)
index 0000000..c918d65
--- /dev/null
@@ -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