Examples of ScopedPreferenceStore


Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

            IMap map = layer.getMap();
            if (map == null)
                return null;
            boolean mylarOnAndAffectingLayer = mylarOnAndAffectingLayer(layer, map);

            ScopedPreferenceStore store = ProjectPlugin.getPlugin().getPreferenceStore();
            String highlightPref = store.getString(PreferenceConstants.P_HIGHLIGHT);

            if (highlightPref.equals(PreferenceConstants.P_HIGHLIGHT_NONE)) {
                if (mylarOnAndAffectingLayer)
                    return systemColor;
                return null;
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

            statusLineManager.dispose();
       
        MapToolPaletteFactory.dispose( paletteRoot );
        paletteRoot = null;
       
        final ScopedPreferenceStore store = ProjectPlugin.getPlugin().getPreferenceStore();
        if (!PlatformUI.getWorkbench().isClosing()) {
            ShutdownTaskList.instance().removePreShutdownTask(shutdownTask);
            try {
                // kill rending now - even if it is moving
                getRenderManager().dispose();
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

public class FullScreenPreferenceInitializer extends
    AbstractPreferenceInitializer {

  public void initializeDefaultPreferences() {
    ScopedPreferenceStore preferences = new ScopedPreferenceStore(
        InstanceScope.INSTANCE, FullScreenActivator.ID);
    preferences.setDefault(FullScreenActivator.HIDE_MENU_BAR, true);
    preferences.setDefault(FullScreenActivator.HIDE_STATUS_BAR, true);
    preferences.setDefault(FullScreenActivator.FULLSCREEN_STARTUP, false);
  }
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

  private ScopedPreferenceStore preferences;

  public FullScreenPreferencePage() {
    super(GRID);
    preferences = new ScopedPreferenceStore(InstanceScope.INSTANCE,
        FullScreenActivator.ID);
    setPreferenceStore(preferences);
  }
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

        // .fbprefs
        // so check if the file is there...
        IFile file = getUserPreferencesFile(project);
        boolean projectPropsEnabled = file.isAccessible();
        if (projectPropsEnabled) {
            ScopedPreferenceStore store = new ScopedPreferenceStore(new ProjectScope(project), PLUGIN_ID);
            // so if the file is there, we can check if after 1.3.8 the flag is
            // set
            // to use workspace properties instead
            projectPropsEnabled = !store.contains(FindBugsConstants.PROJECT_PROPS_DISABLED)
                    || !store.getBoolean(FindBugsConstants.PROJECT_PROPS_DISABLED);
        }
        // remember in the session to speedup access, don't touch the store
        setProjectSettingsEnabled(project, null, projectPropsEnabled);
        return projectPropsEnabled;
    }
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

     * @return the preferences for the project or prefs from workspace
     */
    public static IPreferenceStore getPluginPreferences(IProject project) {
        if (project == null || !isProjectSettingsEnabled(project)) {
            // read workspace (user) settings from instance area
            return new ScopedPreferenceStore(new InstanceScope(), FindbugsPlugin.PLUGIN_ID);
        }

        // use project settings
        return new ScopedPreferenceStore(new ProjectScope(project), FindbugsPlugin.PLUGIN_ID);
    }
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

    public synchronized IPreferenceStore getPreferenceStore()
    {
        // Create the preference store lazily.
        if (this.preferenceStore == null)
        {
            this.preferenceStore = new ScopedPreferenceStore(
                    new InstanceScope(), getBundle().getSymbolicName());

        }
        return this.preferenceStore;
    }
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

      adapter = getElement().getAdapter(IResource.class);
    }
    if (adapter != null && adapter instanceof IResource) {
      String preferenceKey = TagModelQuery.createPreferenceKey(((IResource) adapter).getFullPath());
      new DefaultScope().getNode(JSPCorePlugin.getDefault().getBundle().getSymbolicName()).put(preferenceKey, fValues[0]);
      ScopedPreferenceStore store = new ScopedPreferenceStore(new ProjectScope(((IResource) adapter).getProject()), JSPCorePlugin.getDefault().getBundle().getSymbolicName());

      String[][] entryNamesAndValues = new String[][]{{fDisplayTypes[0], fValues[0]}, {fDisplayTypes[1], fValues[1]}};
      fComboFieldEditor = new ComboFieldEditor(preferenceKey, JSPUIMessages.JSPFContentSettingsPropertyPage_2, entryNamesAndValues, composite);
      fComboFieldEditor.fillIntoGrid(composite, 2);
      fComboFieldEditor.setPreferenceStore(store);
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

  public static final IEclipsePreferences getInstanceNode() {
    return InstanceScope.INSTANCE.getNode(Resources.PLUGIN_ID);
  }

  public static final ScopedPreferenceStore getInstanceStore() {
    return new ScopedPreferenceStore(
        InstanceScope.INSTANCE, Resources.PLUGIN_ID);
  }
View Full Code Here

Examples of org.eclipse.ui.preferences.ScopedPreferenceStore

        return parent;
    }

    private void initPreferencesStore(IProject currProject) {
        workspaceStore = new ScopedPreferenceStore(new InstanceScope(), FindbugsPlugin.PLUGIN_ID);
        if (currProject != null) {
            projectStore = new ScopedPreferenceStore(new ProjectScope(currProject), FindbugsPlugin.PLUGIN_ID);
            projectPropsInitiallyEnabled = FindbugsPlugin.isProjectSettingsEnabled(currProject);
            if (!projectPropsInitiallyEnabled) {
                // use workspace properties instead
                currProject = null;
            }
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.