List of usage examples for org.eclipse.jface.preference IPersistentPreferenceStore interface-usage
From source file au.gov.ga.earthsci.core.preferences.ScopedPreferenceStore.java
/**
* The ScopedPreferenceStore is an IPreferenceStore that uses the scopes
* provided in org.eclipse.core.runtime.preferences.
* <p>
* A ScopedPreferenceStore does the lookup of a preference based on it's search
* scopes and sets the value of the preference based on its store scope.
From source file com.agynamix.platform.frontend.preferences.ApplicationPreferenceStore.java
/**
* I used the Eclipse PreferenceStore here and modified it so that it
* works together with the applications overall preference mechanism.
*
* @see IPreferenceStore
*/
From source file com.github.jennybrown8.wicketsourceopener.preferences.SecurePreferenceStore.java
/**
* This is an adapter between ISecurePreferences (underlying storage) and
* IPreferences (API that the convenience PreferencesPage field editors want to use).
*
* Originally from net.synck.gcontacts.preferences.SecurePreferenceStore and licensed as Lesser GPL
*
From source file com.iw.plugins.spindle.core.eclipse.ProjectPreferenceStore.java
/**
* A concrete preference store implementation based on an internal
* <code>java.util.Properties</code> object, with support for persisting the
* non-default preference values to files or streams.
* <p>
* Changed by GWL to use another preference store to provide defaults
From source file com.iw.plugins.spindle.core.ProjectPreferenceStore.java
/**
* A concrete preference store implementation based on an internal
* <code>java.util.Properties</code> object, with support for persisting the
* non-default preference values to files or streams.
* <p>
* Changed by GWL to use another preference store to provide defaults
From source file com.nsn.squirrel.preferences.ScopedPreferenceStore.java
/**
* The ScopedPreferenceStore is an IPreferenceStore that uses the scopes
* provided in org.eclipse.core.runtime.preferences.
* <p>
* A ScopedPreferenceStore does the lookup of a preference based on it's search
* scopes and sets the value of the preference based on its store scope.
From source file com.opcoach.e4.preferences.ScopedPreferenceStore.java
/**
* The ScopedPreferenceStore is an IPreferenceStore that uses the scopes
* provided in org.eclipse.core.runtime.preferences.
* <p>
* A ScopedPreferenceStore does the lookup of a preference based on it's search
* scopes and sets the value of the preference based on its store scope.
From source file com.puppetlabs.geppetto.pp.dsl.ui.preferences.editors.ProjectAwareScopedPreferenceStore.java
/**
* Mainly copied from {@link org.eclipse.ui.preferences.ScopedPreferenceStore}.
* It fixes the memory leek described in
* <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=239033">these</a>
* <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=362199">bugs</a>.
*
From source file com.technophobia.substeps.editor.preferences.ProjectLocalPreferenceStore.java
public class ProjectLocalPreferenceStore implements IPersistentPreferenceStore { private final String pageId; private final IProject project; private final IPersistentPreferenceStore globalPreferenceStore;
From source file com.technophobia.substeps.editor.preferences.ResourceLocalPreferenceStore.java
public class ResourceLocalPreferenceStore implements IPersistentPreferenceStore { private final String pageId; private final IResource resource; private final IPersistentPreferenceStore globalPreferenceStore;