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 org.jkiss.dbeaver.ui.preferences.PreferenceStoreDelegate.java

/**
 * PrefPageEmpty
 */
public class PreferenceStoreDelegate implements IPreferenceStore, IPersistentPreferenceStore {
    private final DBPPreferenceStore delegate;

From source file org.lamport.tla.toolbox.tool.prover.ui.preference.TLCChainedPreferenceStore.java

/**
 * Preference store that composes multiple preference stores in a
 * chain and serves a preference value from the first preference store in the
 * chain that contains the preference.
 * <p>
 * This preference store is read-writable.</p>

From source file org.modelio.app.preferences.GProjectPreferenceNode.java

/**
 * This class implements a preference node for Modelio GProject preferences.
 * It mainly prefixes the preferences keys with a specific 'nodeId' before delegating to its configured store.
 * 
 * @author phv
 */

From source file org.modelio.app.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.opendaylight.yangide.ui.preferences.OverlayPreferenceStore.java

/**
 * An overlaying preference store.
 *
 * @author Konstantin Zaitsev
 * date: Jul 14, 2014
 */

From source file org.python.pydev.plugin.preferences.OverlayPreferenceStore.java

/**
 * An overlaying preference store.
 */
public class OverlayPreferenceStore implements IPreferenceStore {

    public static final class TypeDescriptor {

From source file org.python.pydev.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<>();

From source file org.rubypeople.rdt.internal.ui.compare.EclipsePreferencesAdapter.java

/**
 * Adapts an options {@link IEclipsePreferences} to {@link org.eclipse.jface.preference.IPreferenceStore}.
 * <p>
 * This preference store is read-only i.e. write access
 * throws an {@link java.lang.UnsupportedOperationException}.
 * </p>

From source file org.rubypeople.rdt.internal.ui.preferences.MockupPreferenceStore.java

/**
 * Mockup preference store, for registering listeners and firing events,
 * without being an actual store.
 * <p>
 * All methods except firing, adding and removing listeners throw
 * an {@link java.lang.UnsupportedOperationException}.

From source file org.rubypeople.rdt.internal.ui.preferences.OverlayPreferenceStore.java

/**
 * An overlaying preference store.
 * 
 * @since 2.1
 */
public class OverlayPreferenceStore implements IPreferenceStore {