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.yoursway.hello.debug.ui.internal.interpreters.ScriptInterpreterPreferencePage.java

/**
 * The Installed InterpreterEnvironments preference page.
 * 
*
 */
public abstract class ScriptInterpreterPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

From source file com.zeus.eclipsePlugin.preferences.ZXTMPreferencePage.java

/**
 * This is the super class for all global preference pages in this plug-in.
 * Controls can easily be added for a particular preference using
 * addControlForPreference(), and this class will take care of the rest.
 */
public abstract class ZXTMPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

From source file crosswalk.diagram.custom.DictionaryPreferencePage.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>
 * This page is used to modify preferences only. They are stored in the preference store that belongs to the main

From source file de.anbos.eclipse.easyshell.plugin.preferences.CommandPage.java

public class CommandPage extends org.eclipse.jface.preference.PreferencePage implements IWorkbenchPreferencePage {

    private Text searchText;
    private CommandTableFilter filter;
    private TableViewer tableViewer;
    private Button addNewButton;

From source file de.anbos.eclipse.easyshell.plugin.preferences.MainPage.java

public class MainPage extends PreferencePage implements IWorkbenchPreferencePage {

    private IWorkbench workbench;

    public MainPage() {
    }

From source file de.anbos.eclipse.easyshell.plugin.preferences.MenuPage.java

public class MenuPage extends org.eclipse.jface.preference.PreferencePage implements IWorkbenchPreferencePage {

    List<CommandData> commandList;
    private MenuDataMover itemMover;
    private Text searchText;
    private MenuTableFilter filter;

From source file de.anbos.eclipse.logviewer.plugin.preferences.LogViewerPreferences.java

public class LogViewerPreferences extends PreferencePage implements IWorkbenchPreferencePage {

    // Attribute ---------------------------------------------------------------

    private IntegerFieldEditor backlogEditor;
    private IntegerFieldEditor bufferEditor;

From source file de.anbos.eclipse.logviewer.plugin.preferences.rule.RulePreferencePage.java

public class RulePreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    // Constant ---------------------------------------------------------------------

    private static final int TABLE_WIDTH = 400;

From source file de.bmw.yamaica.ide.ui.internal.preferences.Preferences.java

/**
 * This class is needed by the org.eclipse.ui.preferencePages extension point (see plugin.xml)
 * and defines the preference page of this plug-in.
 */
public class Preferences extends PreferencePage implements IWorkbenchPreferencePage {
    private static final String NEVER_HIDE = "Never Hide";

From source file de.byteholder.geoclipse.preferences.PrefPageCache.java

public class PrefPageCache extends PreferencePage implements IWorkbenchPreferencePage {

    private static final String EMPTY_STRING = ""; //$NON-NLS-1$
    private static final String SIZE_MBYTE = Messages.prefPage_cache_MByte;

    final static NumberFormat nf = NumberFormat.getNumberInstance();