View | Details | Raw Unified | Return to bug 170704 | Differences between
and this patch

Collapse All | Expand All

(-)ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java (+1 lines)
Lines 747-752 Link Here
747
	public static String ComplianceConfigurationBlock_classfile_greater_source;
747
	public static String ComplianceConfigurationBlock_classfile_greater_source;
748
	public static String ProblemSeveritiesConfigurationBlock_pb_parameter_assignment;
748
	public static String ProblemSeveritiesConfigurationBlock_pb_parameter_assignment;
749
	public static String ProblemSeveritiesConfigurationBlock_pb_null_reference;
749
	public static String ProblemSeveritiesConfigurationBlock_pb_null_reference;
750
	public static String ProblemSeveritiesConfigurationBlock_pb_null_dereference;
750
	public static String ProblemSeveritiesConfigurationBlock_pb_fall_through_case;
751
	public static String ProblemSeveritiesConfigurationBlock_pb_fall_through_case;
751
	public static String CodeAssistConfigurationBlock_hideDeprecated_label;
752
	public static String CodeAssistConfigurationBlock_hideDeprecated_label;
752
	
753
	
(-)ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java (+4 lines)
Lines 80-85 Link Here
80
	private static final Key PREF_PB_FALLTHROUGH_CASE= getJDTCoreKey(JavaCore.COMPILER_PB_FALLTHROUGH_CASE);
80
	private static final Key PREF_PB_FALLTHROUGH_CASE= getJDTCoreKey(JavaCore.COMPILER_PB_FALLTHROUGH_CASE);
81
	
81
	
82
	private static final Key PREF_PB_NULL_REFERENCE= getJDTCoreKey(JavaCore.COMPILER_PB_NULL_REFERENCE);
82
	private static final Key PREF_PB_NULL_REFERENCE= getJDTCoreKey(JavaCore.COMPILER_PB_NULL_REFERENCE);
83
	private static final Key PREF_PB_NULL_DEREFERENCE= getJDTCoreKey(JavaCore.COMPILER_PB_NULL_DEREFERENCE);
83
	
84
	
84
	private static final Key PREF_15_PB_UNCHECKED_TYPE_OPERATION= getJDTCoreKey(JavaCore.COMPILER_PB_UNCHECKED_TYPE_OPERATION);
85
	private static final Key PREF_15_PB_UNCHECKED_TYPE_OPERATION= getJDTCoreKey(JavaCore.COMPILER_PB_UNCHECKED_TYPE_OPERATION);
85
	private static final Key PREF_15_PB_FINAL_PARAM_BOUND= getJDTCoreKey(JavaCore.COMPILER_PB_FINAL_PARAMETER_BOUND);
86
	private static final Key PREF_15_PB_FINAL_PARAM_BOUND= getJDTCoreKey(JavaCore.COMPILER_PB_FINAL_PARAMETER_BOUND);
Lines 279-284 Link Here
279
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_null_reference;
280
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_null_reference;
280
		addComboBox(inner, label, PREF_PB_NULL_REFERENCE, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent);
281
		addComboBox(inner, label, PREF_PB_NULL_REFERENCE, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent);
281
		
282
		
283
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_pb_null_dereference;
284
		addComboBox(inner, label, PREF_PB_NULL_DEREFERENCE, errorWarningIgnore, errorWarningIgnoreLabels, defaultIndent);
285
		
282
		// --- name_shadowing
286
		// --- name_shadowing
283
		
287
		
284
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_section_name_shadowing; 
288
		label= PreferencesMessages.ProblemSeveritiesConfigurationBlock_section_name_shadowing; 
(-)ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.properties (+1 lines)
Lines 448-453 Link Here
448
ProblemSeveritiesConfigurationBlock_pb_unnecessary_type_check_label=Unnecessary cast or 'instanceof' operation:
448
ProblemSeveritiesConfigurationBlock_pb_unnecessary_type_check_label=Unnecessary cast or 'instanceof' operation:
449
ProblemSeveritiesConfigurationBlock_pb_incomplete_enum_switch_label=Enum type constant not covered on 'switch':
449
ProblemSeveritiesConfigurationBlock_pb_incomplete_enum_switch_label=Enum type constant not covered on 'switch':
450
ProblemSeveritiesConfigurationBlock_pb_null_reference=Null reference:
450
ProblemSeveritiesConfigurationBlock_pb_null_reference=Null reference:
451
ProblemSeveritiesConfigurationBlock_pb_null_dereference=Null dereference:
451
ProblemSeveritiesConfigurationBlock_pb_fall_through_case='switch' case fall-through:
452
ProblemSeveritiesConfigurationBlock_pb_fall_through_case='switch' case fall-through:
452
ProblemSeveritiesConfigurationBlock_pb_unnecessary_else_label=Unnecessary else statement:
453
ProblemSeveritiesConfigurationBlock_pb_unnecessary_else_label=Unnecessary else statement:
453
ProblemSeveritiesConfigurationBlock_pb_synth_access_emul_label=Access to a non-accessible member of an enclosing type:
454
ProblemSeveritiesConfigurationBlock_pb_synth_access_emul_label=Access to a non-accessible member of an enclosing type:

Return to bug 170704