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 ext.org.eclipse.jdt.internal.ui.text.PreferencesAdapter.java

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

From source file gov.nasa.ensemble.common.ui.preferences.SynchronizedPreferenceStore.java

public class SynchronizedPreferenceStore implements IPreferenceStore {

    private IPreferenceStore delegate;

    public SynchronizedPreferenceStore(IPreferenceStore store) {
        delegate = store;

From source file hPE.ui.preferences.HPEPreferenceStore.java

/**
 * Code based on ScopedPreferenceStore
 * 
 * @author Juliano Efson Sales
 * 
 */

From source file isabelle.eclipse.ui.preferences.OverlayPreferenceStore.java

/**
 * An overlaying preference store.
 *
 * (AV: copied from org.eclipse.ui.internal.editors.text.OverlayPreferenceStore)
 */
class OverlayPreferenceStore implements IPreferenceStore {

From source file melnorme.lang.ide.core.utils.prefs.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 melnorme.lang.ide.ui.utils.prefs.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 melnorme.util.swt.jface.preference.OverlayPreferenceStore.java

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

    public static final class TypeDescriptor {

From source file monolipse.ui.internal.PreferencesAdapter.java

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

From source file name.abuchen.portfolio.ui.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 net.certiv.fluentmark.preferences.OverlayPreferenceStore.java

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

    /**