List of usage examples for org.eclipse.jface.preference IPreferenceStore interface-usage
From source file at.nucle.e4.plugin.preferences.core.internal.context.PreferenceScopeContext.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 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 ccw.preferences.OverlayPreferenceStore.java
/** * An overlaying preference store. */ public class OverlayPreferenceStore implements IPreferenceStore { public static final class TypeDescriptor {
From source file ch.elexis.core.ui.preferences.SettingsPreferenceStore.java
/**
* Dies ist eine Adapterklasse, die ch.rgw.tools.IO.Settings auf Eclipse-Preferences abbildet. Es
* sollte keine direkte Verwendung dieser Klasse notwendig sein. Intern wird das localCfg-Feld auf
* SysSettings und das globalCfg-Feld auf SqlSettings abgebildet
*
* @author Gerry
From source file ch.elexis.preferences.SettingsPreferenceStore.java
/**
* Dies ist eine Adapterklasse, die ch.rgw.tools.IO.Settings auf Eclipse-Preferences abbildet. Es
* sollte keine direkte Verwendung dieser Klasse notwendig sein. Intern wird das localCfg-Feld auf
* SysSettings und das globalCfg-Feld auf SqlSettings abgebildet
*
* @author Gerry
From source file com.axmor.eclipse.typescript.editor.preferences.OverlayPreferenceStore.java
/** * An overlaying preference store. * */ public class OverlayPreferenceStore implements IPreferenceStore { public static final class TypeDescriptor { private TypeDescriptor() {
From source file com.blackducksoftware.integration.eclipseplugin.common.services.PreferenceStoreMock.java
public class PreferenceStoreMock implements IPreferenceStore { private final HashMap<String, Boolean> booleanPrefs = new HashMap<>(); private final HashMap<String, String> stringPrefs = new HashMap<>();
From source file com.cisco.yangide.ui.preferences.OverlayPreferenceStore.java
/**
* An overlaying preference store.
*
* @author Konstantin Zaitsev
* @date Jul 14, 2014
*/
From source file com.drgarbage.bytecodevisualizer.editors.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 com.github.sdbg.debug.ui.internal.util.PreferencesAdapter.java
/** * Adapts {@link org.eclipse.core.runtime.Preferences} to * {@link org.eclipse.jface.preference.IPreferenceStore} */ // &&& Only used by the custom views inherited by Dart @SuppressWarnings("deprecation")