Example usage for org.eclipse.jface.preference PreferenceStore subclass-usage

List of usage examples for org.eclipse.jface.preference PreferenceStore subclass-usage

Introduction

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

Usage

From source file com.bdaum.overlayPages.PropertyStore.java

/**
 * @author Berthold Daum
 *
 */
public class PropertyStore extends PreferenceStore {

From source file com.chookapp.org.bracketeer.preferences.NonPersistantPreferencesStore.java

public class NonPersistantPreferencesStore extends PreferenceStore {
    public NonPersistantPreferencesStore() {
        super();
    }

    public boolean needsSaving() {

From source file com.palantir.typescript.preferences.ProjectPreferenceStore.java

/**
 * An adapter for {@link PreferenceStore} to allow a preference page to be used as a property page.
 * <p>
 * Adapted from http://www.eclipse.org/articles/Article-Mutatis-mutandis/overlay-pages.html.
 * </p>
 * <p>

From source file kieker.develop.rl.ui.preferences.PropertyStore.java

/**
 * Represents the properties of a specific resource in context of a specific property page.
 * Used by FieldEditorOverlayPage.
 *
 * created after https://www.eclipse.org/articles/Article-Mutatis-mutandis/overlay-pages.html
 *

From source file org.datanucleus.ide.eclipse.preferences.PropertyStore.java

/**
 * Store of properties for a project (as opposed to preferences for all projects).
 * This is taken from the Eclipse article
 * http://www.eclipse.org/articles/Article-Mutatis-mutandis/overlay-pages.html
 * Provides access to the workbenchStore for defaults, and to stored values where
 * there are any.

From source file org.eclipse.cdt.debug.internal.ui.propertypages.CBreakpointPreferenceStore.java

/**
 * A preference store that presents the state of the properties of a C/C++ breakpoint. 
 */
public class CBreakpointPreferenceStore extends PreferenceStore implements IPreferenceStore {

    protected final static String ENABLED = "ENABLED"; //$NON-NLS-1$

From source file org.eclipse.cdt.dsf.gdb.internal.ui.breakpoints.TracepointPreferenceStore.java

/**
 * A preference store that presents the state of the properties of a C/C++ Tracepoint. 
 */
public class TracepointPreferenceStore extends PreferenceStore implements IPreferenceStore {

    protected final static String ENABLED = "ENABLED"; //$NON-NLS-1$

From source file org.eclipse.titan.designer.properties.pages.PropertyStore.java

/**
 * @author Kristof Szabados
 * */
public class PropertyStore extends PreferenceStore {

    private IResource resource;

From source file org.eclipse.titan.executor.properties.PropertyStore.java

/**
 * @author Szabolcs Beres
 * */
public class PropertyStore extends PreferenceStore {

    private IResource resource;

From source file org.eclipse.titan.log.viewer.properties.PropertyStore.java

/**
 * Property Store
 *
 */
public class PropertyStore extends PreferenceStore {
    private IResource resource;