jdt core - build notes 2.2 stream
java development tooling core |
Here are the build notes for the Eclipse JDT/Core plug-in project org.eclipse.jdt.core, describing bug resolution and substantial changes in the HEAD branch. This present document covers all changes since Release 2.1, changes which occurred up to Release 2.1 can be found in build notes R2.1. |
* COMPILER / Reporting Local Variable Declaration Hiding another Variable * When enabled, the compiler will issue an error or a warning whenever a local variable * declaration is hiding some field or local variable (either locally, inherited or defined in enclosing type). * - option id: "org.eclipse.jdt.core.compiler.problem.localVariableHiding" * - possible values: { "error", "warning", "ignore" } * - default: "warning" * * COMPILER / Reporting Field Declaration Hiding another Variable * When enabled, the compiler will issue an error or a warning whenever a field * declaration is hiding some field or local variable (either locally, inherited or defined in enclosing type). * - option id: "org.eclipse.jdt.core.compiler.problem.fieldHiding" * - possible values: { "error", "warning", "ignore" } * - default: "warning" * * COMPILER / Reporting Special Parameter Hiding another Field * When enabled, the compiler will signal cases where a constructor or setter method parameter declaration * is hiding some field (either locally, inherited or defined in enclosing type). * The severity of the problem is controlled with option "org.eclipse.jdt.core.compiler.problem.localVariableHiding". * - option id: "org.eclipse.jdt.core.compiler.problem.specialParameterHidingField" * - possible values: { "enabled", "disabled" } * - default: "disabled"