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

Collapse All | Expand All

(-)ui/JavaUIMessages.properties (+1 lines)
Lines 411-416 Link Here
411
CompilerPreferencePage.pb_method_naming.label=Me&thods with a constructor name:
411
CompilerPreferencePage.pb_method_naming.label=Me&thods with a constructor name:
412
CompilerPreferencePage.pb_deprecation.label=Usage of de&precated API:
412
CompilerPreferencePage.pb_deprecation.label=Usage of de&precated API:
413
CompilerPreferencePage.pb_hidden_catchblock.label=&Hidden catch blocks:
413
CompilerPreferencePage.pb_hidden_catchblock.label=&Hidden catch blocks:
414
CompilerPreferencePage.pb_static_access_receiver.label=Stat&ic members accessed through non-static reference:
414
CompilerPreferencePage.pb_unused_imports.label=Unu&sed imports:
415
CompilerPreferencePage.pb_unused_imports.label=Unu&sed imports:
415
CompilerPreferencePage.pb_unused_local.label=Unused &local variables (i.e. never read):
416
CompilerPreferencePage.pb_unused_local.label=Unused &local variables (i.e. never read):
416
CompilerPreferencePage.pb_unused_parameter.label=U&nused parameters (i.e. never read):
417
CompilerPreferencePage.pb_unused_parameter.label=U&nused parameters (i.e. never read):
(-)ui/preferences/CompilerPreferencePage.java (-1 / +5 lines)
Lines 82-87 Link Here
82
	private static final String PREF_PB_ASSERT_AS_IDENTIFIER= JavaCore.COMPILER_PB_ASSERT_IDENTIFIER;
82
	private static final String PREF_PB_ASSERT_AS_IDENTIFIER= JavaCore.COMPILER_PB_ASSERT_IDENTIFIER;
83
	private static final String PREF_PB_MAX_PER_UNIT= JavaCore.COMPILER_PB_MAX_PER_UNIT;
83
	private static final String PREF_PB_MAX_PER_UNIT= JavaCore.COMPILER_PB_MAX_PER_UNIT;
84
	private static final String PREF_PB_UNUSED_IMPORT= JavaCore.COMPILER_PB_UNUSED_IMPORT;
84
	private static final String PREF_PB_UNUSED_IMPORT= JavaCore.COMPILER_PB_UNUSED_IMPORT;
85
    private static final String PREF_PB_STATIC_ACCESS_RECEIVER= JavaCore.COMPILER_PB_STATIC_ACCESS_RECEIVER;
85
86
86
	private static final String PREF_SOURCE_COMPATIBILITY= JavaCore.COMPILER_SOURCE;
87
	private static final String PREF_SOURCE_COMPATIBILITY= JavaCore.COMPILER_SOURCE;
87
	private static final String PREF_COMPLIANCE= JavaCore.COMPILER_COMPLIANCE;
88
	private static final String PREF_COMPLIANCE= JavaCore.COMPILER_COMPLIANCE;
Lines 118-124 Link Here
118
			PREF_PB_METHOD_WITH_CONSTRUCTOR_NAME, PREF_PB_DEPRECATION, PREF_PB_HIDDEN_CATCH_BLOCK, PREF_PB_UNUSED_LOCAL,
119
			PREF_PB_METHOD_WITH_CONSTRUCTOR_NAME, PREF_PB_DEPRECATION, PREF_PB_HIDDEN_CATCH_BLOCK, PREF_PB_UNUSED_LOCAL,
119
			PREF_PB_UNUSED_PARAMETER, PREF_PB_SYNTHETIC_ACCESS_EMULATION, PREF_PB_NON_EXTERNALIZED_STRINGS,
120
			PREF_PB_UNUSED_PARAMETER, PREF_PB_SYNTHETIC_ACCESS_EMULATION, PREF_PB_NON_EXTERNALIZED_STRINGS,
120
			PREF_PB_ASSERT_AS_IDENTIFIER, PREF_PB_UNUSED_IMPORT, PREF_PB_MAX_PER_UNIT, PREF_SOURCE_COMPATIBILITY, PREF_COMPLIANCE, 
121
			PREF_PB_ASSERT_AS_IDENTIFIER, PREF_PB_UNUSED_IMPORT, PREF_PB_MAX_PER_UNIT, PREF_SOURCE_COMPATIBILITY, PREF_COMPLIANCE, 
121
			PREF_RESOURCE_FILTER, PREF_BUILD_INVALID_CLASSPATH
122
			PREF_RESOURCE_FILTER, PREF_BUILD_INVALID_CLASSPATH, PREF_PB_STATIC_ACCESS_RECEIVER,
122
		};	
123
		};	
123
	}
124
	}
124
125
Lines 321-326 Link Here
321
		label= JavaUIMessages.getString("CompilerPreferencePage.pb_hidden_catchblock.label"); //$NON-NLS-1$
322
		label= JavaUIMessages.getString("CompilerPreferencePage.pb_hidden_catchblock.label"); //$NON-NLS-1$
322
		addComboBox(warningsComposite, label, PREF_PB_HIDDEN_CATCH_BLOCK, errorWarningIgnore, errorWarningIgnoreLabels, 0);
323
		addComboBox(warningsComposite, label, PREF_PB_HIDDEN_CATCH_BLOCK, errorWarningIgnore, errorWarningIgnoreLabels, 0);
323
		
324
		
325
        label= JavaUIMessages.getString("CompilerPreferencePage.pb_static_access_receiver.label"); //$NON-NLS-1$
326
        addComboBox(warningsComposite, label, PREF_PB_STATIC_ACCESS_RECEIVER, errorWarningIgnore, errorWarningIgnoreLabels, 0);
327
        
324
		label= JavaUIMessages.getString("CompilerPreferencePage.pb_unused_imports.label"); //$NON-NLS-1$
328
		label= JavaUIMessages.getString("CompilerPreferencePage.pb_unused_imports.label"); //$NON-NLS-1$
325
		addComboBox(warningsComposite, label, PREF_PB_UNUSED_IMPORT, errorWarningIgnore, errorWarningIgnoreLabels, 0);
329
		addComboBox(warningsComposite, label, PREF_PB_UNUSED_IMPORT, errorWarningIgnore, errorWarningIgnoreLabels, 0);
326
330

Return to bug 21804