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

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

Introduction

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

Usage

From source file ilg.gnumcueclipse.core.ui.preferences.McuPreferencesPage.java

public class McuPreferencesPage extends PreferencePage implements IWorkbenchPreferencePage {

    public McuPreferencesPage() {
        super();
        // setPreferenceStore(CUIPlugin.getDefault().getPreferenceStore());
        setDescription(Messages.McuPreferencesPage_description);

From source file ilg.gnumcueclipse.packs.ui.preferences.ReposPage.java

/**
 * This class represents a preference page that is contributed to the
 * Preferences dialog.
 */

public class ReposPage extends PreferencePage implements IWorkbenchPreferencePage {

From source file info.novatec.inspectit.rcp.preferences.page.CmrRepositoryPreferencePage.java

/**
 * Preference page for {@link CmrRepositoryDefinition} management.
 * <p>
 * <b>This class is not used at the moment. It's not confirmed that quality of the class in with the
 * standards, however, it can serve as an entry to future work regarding preferences.</b>
 * 

From source file io.sarl.eclipse.preferences.SREsPreferencePage.java

/** Preference page for the SARL runtime environments.
 *
 * @author $Author: sgalland$
 * @version $FullVersion$
 * @mavengroupid $GroupId$
 * @mavenartifactid $ArtifactId$

From source file io.usethesource.impulse.preferences.AlternativePreferencesPage.java

/**
 * A multi-tab preferences page for Imp-supported languages.
 * The various tabs nominally represent the same sets of preferences
 * as set on different levels (default, workspace configuration,
 * workspace instance, and project).
 * 

From source file io.usethesource.impulse.preferences.TabbedPreferencesPage.java

/**
 * A multi-tab preferences page for IMP-supported languages.
 * The various tabs nominally represent the same sets of preferences
 * as set on different levels (default, workspace configuration,
 * workspace instance, and project).
 * 

From source file joachimeichborn.geotag.ui.preferences.GeneralPreferences.java

public class GeneralPreferences extends PreferencePage {
    public static final String BACKUP = "backup_pictures";
    public static final String DB_MAX_ENTRIES = "db_max_entries";

    private static final Pattern POSITIVE_INTEGER = Pattern.compile("^[1-9]\\d*$");
    private static final String TITLE = "General";

From source file joachimeichborn.geotag.ui.preferences.GeocodingPreferences.java

public class GeocodingPreferences extends PreferencePage {
    public static final String GEOCODING_PROVIDER = "geocoding_provider";

    private static final String TITLE = "Geocoding";
    private static final String GEOCODING_PROVIDER_FALLBACK = GeocodingProvider.MAP_QUEST.getDisplayName();

From source file joachimeichborn.geotag.ui.preferences.MapPreferences.java

public class MapPreferences extends PreferencePage {
    public static final String ZOOM_MODE = "map_zoom_mode";

    private static final String TITLE = "Map";
    private static final String ZOOM_MODE_FALLBACK = ZoomMode.LATEST_SELECTION.getDisplayName();

From source file jp.co.tabocom.teratermstation.preference.AboutPage.java

public class AboutPage extends PreferencePage {

    public AboutPage() {
        super("TeratermStation????");
    }