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.predic8.plugin.membrane.preferences.ProxyPreferencePage.java

public class ProxyPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

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

    protected Text textHost;
    protected Text textPort;

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

public class SecurityPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

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

    private static final int PASSWORD_WIDTH_HINT = 100;

From source file com.predic8.plugin.membrane_client.preferences.ProxyPreferencesPage.java

public class ProxyPreferencesPage extends PreferencePage implements IWorkbenchPreferencePage {

    public static final String PAGE_ID = "com.predic8.plugin.membrane_client.preferences.ProxyPreferencePage";

    private Text textPort;

From source file com.programmablefun.ide.preferences.ColorSchemePrefPage.java

public class ColorSchemePrefPage extends PreferencePage {

    private final StylesheetRepository original;
    private final StylesheetRepository workingCopy;
    private final Set<String> filesToCopy = Sets.newHashSet();

From source file com.programmablefun.ide.preferences.RepositoryPrefPage.java

public class RepositoryPrefPage extends PreferencePage {

    private final CodeRepository codeRepository;

    public RepositoryPrefPage(CodeRepository codeRepository) {
        super(Messages.get(Preferences_CodeRepository));

From source file com.puppetlabs.geppetto.pp.dsl.ui.preferences.EmptyPreferencePage.java

public class EmptyPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
    @Override
    protected Control createContents(Composite parent) {
        return new Composite(parent, SWT.NULL);
    }

From source file com.safi.workshop.sqlexplorer.preferences.DriverPreferencePage.java

/**
 * This class is used to define a preference page for JDBC drivers.
 * 
 * The intention is to remove the need for the &quot;Driver&quot; view and to replace this
 * with a &quot;JDBC Drivers&quot; preference page. The UI is identical to the view except
 * for the removal of the toolbar and the addition of Add, Edit, Copy, Remove and Set

From source file com.salesforce.ide.ui.editors.apex.preferences.ApexEditorPreferencePage.java

public class ApexEditorPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    // Package access for testing purposes
    BooleanFieldEditor enableNewParser;
    Group startupGroup;

From source file com.salesforce.ide.ui.preferences.GeneralPreferencePage.java

public class GeneralPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    public GeneralPreferencePage() {
    }

    public GeneralPreferencePage(String title) {

From source file com.schmeedy.relaxng.eclipse.ui.internal.preferences.RngSchemaBindingPreferencePage.java

public class RngSchemaBindingPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
    private final UserSchemaBindings userBindings = new UserSchemaBindings();

    private final PluginSchemaBindings pluginBindings = PluginSchemaBindings.INSTANCE;

    private RngSchemaBindingView schemaBindingView;