Example usage for org.eclipse.jface.preference IPreferenceStore interface-usage

List of usage examples for org.eclipse.jface.preference IPreferenceStore interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.preference IPreferenceStore interface-usage.

Usage

From source file net.certiv.fluentmark.preferences.PreferencesAdapter.java

/**
 * Adapts {@link org.eclipse.core.runtime.Preferences} to
 * {@link org.eclipse.jface.preference.IPreferenceStore}
 *
 * @since 3.0
 */

From source file net.mldonkey.g2gui.view.pref.OptionsPreferenceStore.java

/**
 * OptionsPreferenceStore<br>
 * All the stubs are not used in this context, as we only make use of string, or boolean
 * of course, we could introduce some intEditors for the int-values from core, but we don't need this, right?
 * as mldonkey itself cares for wrong values...
 *

From source file net.sf.eclipsensis.settings.PreferenceStoreWrapper.java

public class PreferenceStoreWrapper implements IPreferenceStore {
    private IPreferenceStore mParentStore;
    private IPreferenceStore mInternalStore;
    private IPropertyChangeListener mPropertyChangeListener = new IPropertyChangeListener() {
        public void propertyChange(PropertyChangeEvent event) {
            String name = event.getProperty();

From source file net.sf.solareclipse.ui.preferences.OverlayPreferenceStore.java

/**
 * An overlaying preference store.
 */
public class OverlayPreferenceStore implements IPreferenceStore {
    private class PropertyListener implements IPropertyChangeListener {
        public void propertyChange(PropertyChangeEvent event) {

From source file net.sf.wdte.ui.preferences.OverlayPreferenceStore.java

/**
 * An overlaying preference store.
 */
public class OverlayPreferenceStore implements IPreferenceStore {
    private class PropertyListener implements IPropertyChangeListener {
        @Override

From source file net.sourceforge.eclipsetrader.core.db.PersistentPreferenceStore.java

/**
 * A concrete preference store implementation based on an internal
 * <code>java.util.Map</code> object.
 * <p>
 * This class was not designed to be subclassed.
 * </p>

From source file net.sourceforge.sqlexplorer.preferences.OverlayPreferenceStore.java

public class OverlayPreferenceStore implements IPreferenceStore {
    public static final class TypeDescriptor {
        TypeDescriptor() {
        }
    };

From source file net.yatomiya.e4.ui.preference.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 org.axdt.common.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 org.brainwy.liclipsetext.shared_core.preferences.NullPrefsStore.java

/**
 * Stub that does nothing (same idea of a NullProgressMonitor)
 */
public class NullPrefsStore implements IPreferenceStore {

    Map<String, Object> nameToVal = new HashMap<>();