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 com.palantir.typescript.preferences.GeneralPreferencePage.java

/**
 * The general preference page.
 *
 * @author dcicerone
 */
public final class GeneralPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

From source file com.peergreen.eclipse.osgi.preferences.PeergreenPreferencePage.java

/**
 * Preference page for the Eclipse plugin.
 * @author Florent Benoit
 */
public class PeergreenPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

From source file com.persistent.ui.preference.ServiceEndptPreferencePage.java

/**
 * Class for Service end point preference page.
 * Creates UI components and their listeners.
 */
public class ServiceEndptPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
    private Text txtPortal;

From source file com.persistent.ui.preference.StorageAccountsPreferencePage.java

public class StorageAccountsPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
    private Button btnImpFrmPubSetFile;
    private Table tblStorage;
    private TableViewer tableViewer;
    private Button btnAddStorage;
    private Button btnRemoveStorage;

From source file com.persistent.ui.preference.WindowsAzurePreferencePage.java

/**
 * Class creates windows azure preference page. 
 */
public class WindowsAzurePreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    @Override

From source file com.photon.phresco.ui.preferences.GlobalConfigurationPage.java

/**
 * Global configuration preference page
 * 
 * @author arunachalam.lakshmanan@photoninfotech.net
 *
 */

From source file com.piece_framework.makegood.ui.preferences.MakeGoodPreferencePage.java

public class MakeGoodPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
    /**
     * @since 2.3.0
     */
    private Button continuousTestingEnabledButton;

From source file com.predic8.plugin.membrane.preferences.ExchangePreferencePage.java

public class ExchangePreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    public static final String PAGE_ID = "com.predic8.plugin.membrane.preferences.ExchangePreferencePage";

    private Button autotrack;

From source file com.predic8.plugin.membrane.preferences.MembraneMonitorPreferencePage.java

public class MembraneMonitorPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    public static final String PAGE_ID = "com.predic8.plugin.membrane.preferences.MembraneMonitorPreferencePage";

    public MembraneMonitorPreferencePage() {

From source file com.predic8.plugin.membrane.preferences.MessagePreferencePage.java

/**
 * This class represents a preference page that is contributed to the
 * Preferences dialog. By subclassing <samp>FieldEditorPreferencePage</samp>, we
 * can use the field support built into JFace that allows us to create a page
 * that is small and knows how to save, restore and apply itself.
 * <p>