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

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

Introduction

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

Usage

From source file org.eclipse.ease.ui.preferences.TextFieldEditor.java

/**
 * A field editor for a string type preference.
 * <p>
 * This class may be used as is, or subclassed as required.
 * </p>
 */

From source file org.eclipse.eavp.viz.service.connections.preferences.DynamicComboFieldEditor.java

/**
 * This class provides a field editor with an underlying {@link Combo}.
 * <p>
 * The major difference between this class and the default JFace
 * {@link ComboFieldEditor} is that this editor provides hooks to update the
 * current value and the allowed values for the editor. This is important if the

From source file org.eclipse.ecf.internal.example.collab.start.URLListFieldEditor.java

public class URLListFieldEditor extends FieldEditor {

    private List list;
    private SelectionListener selectionListener;
    private Button removeButton;
    private Composite buttonBox;

From source file org.eclipse.ecf.internal.example.collab.ui.LabelFieldEditor.java

/**
 * A field editor for displaying labels not associated with other widgets.
 */
class LabelFieldEditor extends FieldEditor {

    private Label label;

From source file org.eclipse.gmf.runtime.common.ui.preferences.ComboFieldEditor.java

/**
 * Constructs a field editor with a label and a drop down combo box.
 * 
 * @author Wayne Diu, wdiu
 */
public class ComboFieldEditor extends FieldEditor {

From source file org.eclipse.gmf.runtime.common.ui.preferences.FontFieldEditor.java

/**
 * A field editor for a font type preference.
 * 
 * Very similar to the org.eclipse.jface.preference.FontFieldEditor.
 * The difference is that the ability to change the selected font 
 * without a user action (using the change font button) is provided.

From source file org.eclipse.ice.viz.service.connections.preferences.DynamicComboFieldEditor.java

/**
 * This class provides a field editor with an underlying {@link Combo}.
 * <p>
 * The major difference between this class and the default JFace
 * {@link ComboFieldEditor} is that this editor provides hooks to update the
 * current value and the allowed values for the editor. This is important if the

From source file org.eclipse.ice.viz.service.preferences.DynamicComboFieldEditor.java

/**
 * This class provides a field editor with an underlying {@link Combo}.
 * <p>
 * The major difference between this class and the default JFace
 * {@link ComboFieldEditor} is that this editor provides hooks to update the
 * current value and the allowed values for the editor. This is important if the

From source file org.eclipse.imp.preferences.fields.ComboFieldEditor.java

/**
 * A field editor for a combo box that allows the drop-down selection of one of a list of items.
 * 
 * SMS:  This is a copy of ComboFieldEditor, found in org.eclipse.imp.preferences.fields,
 * which itself is a copy from org.eclipse.search.internal.ui.util, as indicated by the
 * following comment (copied from the "original"):

From source file org.eclipse.imp.preferences.fields.FieldEditor.java

/**
 * Points to note:
 * - Preferences service instead of a preference store
 * - Preferences have a level
 *   - Four fixed levels
 *   - Named by strings because ...