Examples of PreferencesAdapter


Examples of org.eclipse.dltk.ui.PreferencesAdapter

    completionOverrideRadioButton.setSelection(!completionInsertRadioButton
        .getSelection());
  }

  protected IPreferenceStore getPreferenceStore() {
    return new PreferencesAdapter(PHPCorePlugin.getDefault()
        .getPluginPreferences());
  }
View Full Code Here

Examples of org.eclipse.dltk.ui.PreferencesAdapter

        PHPUIMessages.CodeAssistPreferencePage_showStrictOptions,
        PHPCoreConstants.CODEASSIST_SHOW_STRICT_OPTIONS, 0);
  }

  protected IPreferenceStore getPreferenceStore() {
    return new PreferencesAdapter(PHPCorePlugin.getDefault()
        .getPluginPreferences());
  }
View Full Code Here

Examples of org.eclipse.dltk.ui.PreferencesAdapter

    setControlsEnabled(PHPCoreConstants.CODEASSIST_AUTOACTIVATION_DELAY,
        autoActivateSectionEnabled);
  }

  protected IPreferenceStore getPreferenceStore() {
    return new PreferencesAdapter(PHPCorePlugin.getDefault()
        .getPluginPreferences());
  }
View Full Code Here

Examples of org.eclipse.jdt.internal.ui.text.PreferencesAdapter

     */
    private IPreferenceStore createCombinedPreferenceStore(IEditorInput input) {
        List<IPreferenceStore> stores = new ArrayList<IPreferenceStore>(3);

        stores.add(ForceIdeEditorsPlugin.getDefault().getPreferenceStore());
        stores.add(new PreferencesAdapter(ForceIdeEditorsPlugin.getDefault().getPluginPreferences()));
        stores.add(EditorsUI.getPreferenceStore());

        return new ChainedPreferenceStore(stores.toArray(new IPreferenceStore[stores.size()]));
    }
View Full Code Here

Examples of org.eclipse.ui.internal.preferences.PreferencesAdapter

       
        if (result != null) {
            return result;
        }
       
        result = new PreferencesAdapter(toQuery.getPluginPreferences());
        prefs.put(id, result);
        return result;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.