View | Details | Raw Unified | Return to bug 331447
Collapse All | Expand All

(-)ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java (+1 lines)
Lines 360-365 Link Here
360
	public static String ProblemSeveritiesConfigurationBlock_needsfullbuild_message;
360
	public static String ProblemSeveritiesConfigurationBlock_needsfullbuild_message;
361
	public static String ProblemSeveritiesConfigurationBlock_needsprojectbuild_message;
361
	public static String ProblemSeveritiesConfigurationBlock_needsprojectbuild_message;
362
	public static String ProblemSeveritiesConfigurationBlock_common_description;
362
	public static String ProblemSeveritiesConfigurationBlock_common_description;
363
	public static String ProblemSeveritiesConfigurationBlock_pb_unavoidable_generic_type_problems;
363
	public static String ProblemSeveritiesConfigurationBlock_pb_unsafe_type_op_label;
364
	public static String ProblemSeveritiesConfigurationBlock_pb_unsafe_type_op_label;
364
	public static String ProblemSeveritiesConfigurationBlock_pb_raw_type_reference;
365
	public static String ProblemSeveritiesConfigurationBlock_pb_raw_type_reference;
365
	public static String ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label;
366
	public static String ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label;
(-)ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties (+1 lines)
Lines 387-392 Link Here
387
ProblemSeveritiesConfigurationBlock_needsprojectbuild_message=The Error/Warning settings have changed. A rebuild of the project is required for changes to take effect. Build the project now?
387
ProblemSeveritiesConfigurationBlock_needsprojectbuild_message=The Error/Warning settings have changed. A rebuild of the project is required for changes to take effect. Build the project now?
388
388
389
ProblemSeveritiesConfigurationBlock_common_description=&Select the severity level for the following optional Java compiler problems:
389
ProblemSeveritiesConfigurationBlock_common_description=&Select the severity level for the following optional Java compiler problems:
390
ProblemSeveritiesConfigurationBlock_pb_unavoidable_generic_type_problems=Ignore unavoidable generic type problems
390
ProblemSeveritiesConfigurationBlock_pb_unsafe_type_op_label=Unchecked generic type operation:
391
ProblemSeveritiesConfigurationBlock_pb_unsafe_type_op_label=Unchecked generic type operation:
391
ProblemSeveritiesConfigurationBlock_pb_raw_type_reference=Usage of a raw type:
392
ProblemSeveritiesConfigurationBlock_pb_raw_type_reference=Usage of a raw type:
392
ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label=Generic t&ype parameter declared with a final type bound:
393
ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label=Generic t&ype parameter declared with a final type bound:
(-)ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java (-1 / +6 lines)
Lines 103-108 Link Here
103
	private static final Key PREF_15_PB_TYPE_PARAMETER_HIDING= getJDTCoreKey(JavaCore.COMPILER_PB_TYPE_PARAMETER_HIDING);
103
	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);
104
	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);
105
	private static final Key PREF_15_PB_RAW_TYPE_REFERENCE= getJDTCoreKey(JavaCore.COMPILER_PB_RAW_TYPE_REFERENCE);
106
	private static final Key PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS= getJDTCoreKey(JavaCore.COMPILER_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS);
106
107
107
	private static final Key PREF_PB_SUPPRESS_WARNINGS= getJDTCoreKey(JavaCore.COMPILER_PB_SUPPRESS_WARNINGS);
108
	private static final Key PREF_PB_SUPPRESS_WARNINGS= getJDTCoreKey(JavaCore.COMPILER_PB_SUPPRESS_WARNINGS);
108
	private static final Key PREF_PB_SUPPRESS_OPTIONAL_ERRORS= getJDTCoreKey(JavaCore.COMPILER_PB_SUPPRESS_OPTIONAL_ERRORS);
109
	private static final Key PREF_PB_SUPPRESS_OPTIONAL_ERRORS= getJDTCoreKey(JavaCore.COMPILER_PB_SUPPRESS_OPTIONAL_ERRORS);
Lines 158-164 Link Here
158
				PREF_15_PB_AUTOBOXING_PROBLEM, PREF_15_PB_MISSING_OVERRIDE_ANNOTATION, PREF_16_PB_MISSING_OVERRIDE_ANNOTATION_FOR_INTERFACE_METHOD_IMPLEMENTATION,
159
				PREF_15_PB_AUTOBOXING_PROBLEM, PREF_15_PB_MISSING_OVERRIDE_ANNOTATION, PREF_16_PB_MISSING_OVERRIDE_ANNOTATION_FOR_INTERFACE_METHOD_IMPLEMENTATION,
159
				PREF_15_PB_ANNOTATION_SUPER_INTERFACE,
160
				PREF_15_PB_ANNOTATION_SUPER_INTERFACE,
160
				PREF_15_PB_TYPE_PARAMETER_HIDING, PREF_15_PB_INCOMPLETE_ENUM_SWITCH, PREF_PB_MISSING_DEPRECATED_ANNOTATION,
161
				PREF_15_PB_TYPE_PARAMETER_HIDING, PREF_15_PB_INCOMPLETE_ENUM_SWITCH, PREF_PB_MISSING_DEPRECATED_ANNOTATION,
161
				PREF_15_PB_RAW_TYPE_REFERENCE, PREF_PB_FATAL_OPTIONAL_ERROR,
162
				PREF_15_PB_RAW_TYPE_REFERENCE, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS,
163
				PREF_PB_FATAL_OPTIONAL_ERROR,
162
				PREF_PB_FORBIDDEN_REFERENCE, PREF_PB_DISCOURRAGED_REFERENCE,
164
				PREF_PB_FORBIDDEN_REFERENCE, PREF_PB_DISCOURRAGED_REFERENCE,
163
				PREF_PB_SUPPRESS_WARNINGS, PREF_PB_SUPPRESS_OPTIONAL_ERRORS,
165
				PREF_PB_SUPPRESS_WARNINGS, PREF_PB_SUPPRESS_OPTIONAL_ERRORS,
164
				PREF_PB_UNHANDLED_WARNING_TOKEN,
166
				PREF_PB_UNHANDLED_WARNING_TOKEN,
Lines 445-450 Link Here
445
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label;
447
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_final_param_bound_label;
446
		fFilteredPrefTree.addComboBox(inner, label, PREF_15_PB_FINAL_PARAM_BOUND, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section);
448
		fFilteredPrefTree.addComboBox(inner, label, PREF_15_PB_FINAL_PARAM_BOUND, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent, section);
447
449
450
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_unavoidable_generic_type_problems;
451
		fFilteredPrefTree.addCheckBox(inner, label, PREF_15_PB_UNAVOIDABLE_GENERIC_TYPE_PROBLEMS, disabledEnabled, defaultIndent, section);
452
		
448
		// --- annotations
453
		// --- annotations
449
454
450
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_section_annotations;
455
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_section_annotations;

Return to bug 331447