Package melnorme.lang.ide.ui.preferences.EditorAppearanceColorsComponent

Examples of melnorme.lang.ide.ui.preferences.EditorAppearanceColorsComponent.EditorColorItem


  }
 
  @Override
  protected EditorColorItem[] createEditorAppearanceColorEntries() {
    return new EditorColorItem[] {
        new EditorColorItem(
          PreferencesMessages.EditorPreferencePage_matchingBracketsHighlightColor,
          PreferenceConstants.EDITOR_MATCHING_BRACKETS_COLOR),
        new EditorColorItem(
          PreferencesMessages.EditorPreferencePage_backgroundForMethodParameters,
          PreferenceConstants.CODEASSIST_PARAMETERS_BACKGROUND),
        new EditorColorItem(
          PreferencesMessages.EditorPreferencePage_foregroundForMethodParameters,
          PreferenceConstants.CODEASSIST_PARAMETERS_FOREGROUND),
        new EditorColorItem(
          PreferencesMessages.EditorPreferencePage_backgroundForCompletionReplacement,
          PreferenceConstants.CODEASSIST_REPLACEMENT_BACKGROUND),
        new EditorColorItem(
          PreferencesMessages.EditorPreferencePage_foregroundForCompletionReplacement,
          PreferenceConstants.CODEASSIST_REPLACEMENT_FOREGROUND),
        new EditorColorItem(
          PreferencesMessages.EditorPreferencePage_sourceHoverBackgroundColor,
          PreferenceConstants.EDITOR_SOURCE_HOVER_BACKGROUND_COLOR,
          PreferenceConstants.EDITOR_SOURCE_HOVER_BACKGROUND_COLOR_SYSTEM_DEFAULT,
          SWT.COLOR_INFO_BACKGROUND) };
  }
View Full Code Here

TOP

Related Classes of melnorme.lang.ide.ui.preferences.EditorAppearanceColorsComponent.EditorColorItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.