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.openxma.dsl.ui.preferences.StringFieldListEditor.java

/**
 * A field editor to edit a list of strings.
 */
public class StringFieldListEditor extends FieldEditor {
    /**
     * Validation strategy constant (value <code>0</code>) indicating that

From source file org.org.eclipse.core.utils.platform.preferences.editor.MapEditor.java

/**
 * An abstract field editor that manages a table of input values. The editor displays a table containing the values, buttons for adding and removing values, and Up and Down buttons to adjust the order of elements in the table.
 * <p>
 * Subclasses must implement the <code>parseString</code>, <code>createList</code>, and <code>getNewInputObject</code> framework methods.
 * </p>
 */

From source file org.org.eclipse.core.utils.platform.properties.ComboFieldEditor.java

/**
 * A field editor for a combo box that allows the drop-down selection of one of a list of items.
 * 
 * @since 2.1
 */
public class ComboFieldEditor extends FieldEditor {

From source file org.python.copiedfromeclipsesrc.PythonListEditor.java

/**
 * An abstract field editor that manages a list of input values. The editor displays a list containing the values, buttons for adding and
 * removing values, and Up and Down buttons to adjust the order of elements in the list.
 * <p>
 * Subclasses must implement the <code>parseString</code>,<code>createList</code>, and <code>getNewInputObject</code> framework
 * methods.

From source file org.python.pydev.debug.ui.TableEditor.java

/**
 * An abstract field editor that manages a list of input values. 
 * The editor displays a list containing the values, buttons for
 * adding and removing values, and Up and Down buttons to adjust
 * the order of elements in the list.
 * <p>

From source file org.python.pydev.shared_ui.field_editors.ButtonFieldEditor.java

public class ButtonFieldEditor extends FieldEditor {

    /**
     * Button class
     */
    private Button button;

From source file org.python.pydev.shared_ui.field_editors.ComboFieldEditor.java

/**
 * A field editor for a combo box that allows the drop-down selection of one of
 * a list of items.
 *
 * Note: copied to work on eclipse 3.2
 *

From source file org.python.pydev.shared_ui.field_editors.LabelFieldEditor.java

public class LabelFieldEditor extends FieldEditor {
    public LabelFieldEditor(String name, String labelText, Composite parent) {
        init(name, labelText);
        createControl(parent);
    }

From source file org.python.pydev.shared_ui.field_editors.LinkFieldEditor.java

/**
 * Helper class to provide a field that can be used as a link.
 *
 * @note: to actually create a text that can be linked, it must be written as html with <a>text</a>.
 *
 * @author Fabio

From source file org.python.pydev.utils.ComboFieldEditor.java

/**
 * A field editor for a combo box that allows the drop-down selection of one of
 * a list of items.
 * 
 * Note: copied to work on eclipse 3.2
 *