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.android.ide.eclipse.monitor.AndroidPreferencePage.java

public class AndroidPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
    public AndroidPreferencePage() {
        super(""); //$NON-NLS-1$
        setPreferenceStore(MonitorPlugin.getDefault().getPreferenceStore());
    }

From source file com.anirudh.emacseclipse.GnuClientPreferencePage.java

public class GnuClientPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    Text gnuClientText;
    Text clientArgsText;
    Text elispText;

From source file com.antimatterstudios.esftp.ui.Workbench.java

public class Workbench extends PreferencePage implements IWorkbenchPreferencePage {

    protected UserInterface m_interface;
    protected WorkspacePreferences m_store;

    public Workbench() {

From source file com.aptana.editor.common.preferences.TasksPreferencePage.java

/**
 * Allows the user to edit the set of task tags and their priorities
 * 
 * @since 3.0
 */
public final class TasksPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

From source file com.aptana.editor.common.preferences.ValidationPreferencePage.java

public class ValidationPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    // TODO Move this class to the build.ui plugin. Not sure how we'd handle doing the forced reconcile.
    /**
     * Property names for columns.
     */

From source file com.aptana.editor.common.spelling.SpellingPreferencePage.java

/**
 * @author Max Stepanov
 */
public class SpellingPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    private static final String GENERAL_SPELLING_PREF_ID = "org.eclipse.ui.editors.preferencePages.Spelling"; //$NON-NLS-1$

From source file com.aptana.editor.php.internal.ui.preferences.PHPLibrariesPreferencePage.java

/**
 * @author Pavel Petrochenko
 */
public class PHPLibrariesPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

    private final class SelectAction implements SelectionListener {

From source file com.aptana.formatter.ui.preferences.PropertyAndPreferencePage.java

/**
 * Direct port from the jdt ui, this class should not be extended by anyone but the internal dltk ui.
 * 
 * @see AbstractConfigurationBlockPropertyAndPreferencePage
 */
public abstract class PropertyAndPreferencePage extends PreferencePage

From source file com.aptana.ide.core.ui.preferences.FileExtensionPreferencePage.java

/**
 * Base preference page for showing a table of editable items based loosely on file types and extensions
 * 
 * @author Ingo Muschenetz
 */
public abstract class FileExtensionPreferencePage extends PreferencePage

From source file com.aptana.ide.debug.internal.ui.preferences.JSDebugPreferencePage.java

/**
 * @author Max Stepanov
 */
public class JSDebugPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
    private Preferences store;
    private Button suspendOnFirstLine;