Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 351934
Collapse All | Expand All

(-)ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java (+5 lines)
Lines 5-10 Link Here
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
7
 *
8
 * This is an implementation of an early-draft specification developed under the Java
9
 * Community Process (JCP) and is made available for testing and evaluation purposes
10
 * only. The code is not compatible with any specification of the JCP.
11
 *
8
 * Contributors:
12
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
13
 *     IBM Corporation - initial API and implementation
10
 *     John Kaplan, johnkaplantech@gmail.com - 108071 [code templates] template for body of newly created class
14
 *     John Kaplan, johnkaplantech@gmail.com - 108071 [code templates] template for body of newly created class
Lines 264-269 Link Here
264
	public static String ProblemSeveritiesConfigurationBlock_ignore_documented_unused_parameters;
268
	public static String ProblemSeveritiesConfigurationBlock_ignore_documented_unused_parameters;
265
	public static String ProblemSeveritiesConfigurationBlock_pb_redundant_null_check;
269
	public static String ProblemSeveritiesConfigurationBlock_pb_redundant_null_check;
266
	public static String ProblemSeveritiesConfigurationBlock_pb_redundant_super_interface_label;
270
	public static String ProblemSeveritiesConfigurationBlock_pb_redundant_super_interface_label;
271
	public static String ProblemSeveritiesConfigurationBlock_pb_redundant_type_arguments_label;
267
	public static String ProblemSeveritiesConfigurationBlock_include_assert_in_null_analysis;
272
	public static String ProblemSeveritiesConfigurationBlock_include_assert_in_null_analysis;
268
	public static String ProblemSeveritiesConfigurationBlock_treat_optional_as_fatal;
273
	public static String ProblemSeveritiesConfigurationBlock_treat_optional_as_fatal;
269
	public static String SourceAttachmentPropertyPage_error_title;
274
	public static String SourceAttachmentPropertyPage_error_title;
(-)ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties (+5 lines)
Lines 5-10 Link Here
5
# which accompanies this distribution, and is available at
5
# which accompanies this distribution, and is available at
6
# http://www.eclipse.org/legal/epl-v10.html
6
# http://www.eclipse.org/legal/epl-v10.html
7
#
7
#
8
# This is an implementation of an early-draft specification developed under the Java
9
# Community Process (JCP) and is made available for testing and evaluation purposes
10
# only. The code is not compatible with any specification of the JCP.
11
#
8
# Contributors:
12
# Contributors:
9
#     IBM Corporation - initial API and implementation
13
#     IBM Corporation - initial API and implementation
10
#     John Kaplan, johnkaplantech@gmail.com - 108071 [code templates] template for body of newly created class
14
#     John Kaplan, johnkaplantech@gmail.com - 108071 [code templates] template for body of newly created class
Lines 429-434 Link Here
429
ProblemSeveritiesConfigurationBlock_pb_parameter_assignment=Parameter assignment:
433
ProblemSeveritiesConfigurationBlock_pb_parameter_assignment=Parameter assignment:
430
ProblemSeveritiesConfigurationBlock_pb_redundant_null_check=Redundant null check:
434
ProblemSeveritiesConfigurationBlock_pb_redundant_null_check=Redundant null check:
431
ProblemSeveritiesConfigurationBlock_pb_redundant_super_interface_label=Redundant super interface:
435
ProblemSeveritiesConfigurationBlock_pb_redundant_super_interface_label=Redundant super interface:
436
ProblemSeveritiesConfigurationBlock_pb_redundant_type_arguments_label=Redundant type arguments
432
ProblemSeveritiesConfigurationBlock_pb_non_externalized_strings_label=Non-externalized strings (missing/unused $NON-NLS$ tag):
437
ProblemSeveritiesConfigurationBlock_pb_non_externalized_strings_label=Non-externalized strings (missing/unused $NON-NLS$ tag):
433
ProblemSeveritiesConfigurationBlock_pb_dead_code=Dead code (e.g. 'if (false)'):
438
ProblemSeveritiesConfigurationBlock_pb_dead_code=Dead code (e.g. 'if (false)'):
434
ProblemSeveritiesConfigurationBlock_pb_deprecation_label=Deprecated API:
439
ProblemSeveritiesConfigurationBlock_pb_deprecation_label=Deprecated API:
(-)ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java (-1 / +9 lines)
Lines 5-10 Link Here
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
7
 *
8
 * This is an implementation of an early-draft specification developed under the Java
9
 * Community Process (JCP) and is made available for testing and evaluation purposes
10
 * only. The code is not compatible with any specification of the JCP.
11
 *
8
 * Contributors:
12
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
13
 *     IBM Corporation - initial API and implementation
10
 *     Benjamin Muskalla <b.muskalla@gmx.net> - [preferences] Add preference for new compiler warning: MissingSynchronizedModifierInInheritedMethod - https://bugs.eclipse.org/bugs/show_bug.cgi?id=245240
14
 *     Benjamin Muskalla <b.muskalla@gmx.net> - [preferences] Add preference for new compiler warning: MissingSynchronizedModifierInInheritedMethod - https://bugs.eclipse.org/bugs/show_bug.cgi?id=245240
Lines 103-108 Link Here
103
	private static final Key PREF_15_PB_TYPE_PARAMETER_HIDING= getJDTCoreKey(JavaCore.COMPILER_PB_TYPE_PARAMETER_HIDING);
107
	private static final Key PREF_15_PB_TYPE_PARAMETER_HIDING= getJDTCoreKey(JavaCore.COMPILER_PB_TYPE_PARAMETER_HIDING);
104
	private static final Key PREF_15_PB_INCOMPLETE_ENUM_SWITCH= getJDTCoreKey(JavaCore.COMPILER_PB_INCOMPLETE_ENUM_SWITCH);
108
	private static final Key PREF_15_PB_INCOMPLETE_ENUM_SWITCH= getJDTCoreKey(JavaCore.COMPILER_PB_INCOMPLETE_ENUM_SWITCH);
105
	private static final Key PREF_15_PB_RAW_TYPE_REFERENCE= getJDTCoreKey(JavaCore.COMPILER_PB_RAW_TYPE_REFERENCE);
109
	private static final Key PREF_15_PB_RAW_TYPE_REFERENCE= getJDTCoreKey(JavaCore.COMPILER_PB_RAW_TYPE_REFERENCE);
110
	private static final Key PREF_17_PB_REDUNDANT_TYPE_ARGUMENTS= getJDTCoreKey(JavaCore.COMPILER_PB_REDUNDANT_TYPE_ARGUMENTS);
106
	private static final Key PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS= getJDTCoreKey(JavaCore.COMPILER_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS);
111
	private static final Key PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS= getJDTCoreKey(JavaCore.COMPILER_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS);
107
112
108
	private static final Key PREF_PB_SUPPRESS_WARNINGS= getJDTCoreKey(JavaCore.COMPILER_PB_SUPPRESS_WARNINGS);
113
	private static final Key PREF_PB_SUPPRESS_WARNINGS= getJDTCoreKey(JavaCore.COMPILER_PB_SUPPRESS_WARNINGS);
Lines 161-167 Link Here
161
				PREF_15_PB_AUTOBOXING_PROBLEM, PREF_15_PB_MISSING_OVERRIDE_ANNOTATION, PREF_16_PB_MISSING_OVERRIDE_ANNOTATION_FOR_INTERFACE_METHOD_IMPLEMENTATION,
166
				PREF_15_PB_AUTOBOXING_PROBLEM, PREF_15_PB_MISSING_OVERRIDE_ANNOTATION, PREF_16_PB_MISSING_OVERRIDE_ANNOTATION_FOR_INTERFACE_METHOD_IMPLEMENTATION,
162
				PREF_15_PB_ANNOTATION_SUPER_INTERFACE,
167
				PREF_15_PB_ANNOTATION_SUPER_INTERFACE,
163
				PREF_15_PB_TYPE_PARAMETER_HIDING, PREF_15_PB_INCOMPLETE_ENUM_SWITCH, PREF_PB_MISSING_DEPRECATED_ANNOTATION,
168
				PREF_15_PB_TYPE_PARAMETER_HIDING, PREF_15_PB_INCOMPLETE_ENUM_SWITCH, PREF_PB_MISSING_DEPRECATED_ANNOTATION,
164
				PREF_15_PB_RAW_TYPE_REFERENCE, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS,
169
				PREF_15_PB_RAW_TYPE_REFERENCE, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS, PREF_17_PB_REDUNDANT_TYPE_ARGUMENTS,
165
				PREF_PB_FATAL_OPTIONAL_ERROR,
170
				PREF_PB_FATAL_OPTIONAL_ERROR,
166
				PREF_PB_FORBIDDEN_REFERENCE, PREF_PB_DISCOURRAGED_REFERENCE,
171
				PREF_PB_FORBIDDEN_REFERENCE, PREF_PB_DISCOURRAGED_REFERENCE,
167
				PREF_PB_SUPPRESS_WARNINGS, PREF_PB_SUPPRESS_OPTIONAL_ERRORS,
172
				PREF_PB_SUPPRESS_WARNINGS, PREF_PB_SUPPRESS_OPTIONAL_ERRORS,
Lines 457-462 Link Here
457
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label;
462
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label;
458
		fFilteredPrefTree.addComboBox(inner, label, PREF_15_PB_FINAL_PARAM_BOUND, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section);
463
		fFilteredPrefTree.addComboBox(inner, label, PREF_15_PB_FINAL_PARAM_BOUND, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section);
459
464
465
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_redundant_type_arguments_label;
466
		fFilteredPrefTree.addComboBox(inner, label, PREF_17_PB_REDUNDANT_TYPE_ARGUMENTS, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section);
467
460
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_unavoidable_generic_type_problems;
468
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_unavoidable_generic_type_problems;
461
		fFilteredPrefTree.addCheckBox(inner, label, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS, disabledEnabled, defaultIndent, section);
469
		fFilteredPrefTree.addCheckBox(inner, label, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS, disabledEnabled, defaultIndent, section);
462
		
470
		

Return to bug 351934