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.apache.pig.pigpen.preferences.inputs.MapEditor.java

/**
 * A property grid widget
 */
public abstract class MapEditor extends FieldEditor {

    /**

From source file org.axdt.asdoc.ui.preferences.DocTableFieldEditor.java

public class DocTableFieldEditor extends FieldEditor {

    private Composite baseComp;
    private TableViewer tableViewer;

    public DocTableFieldEditor(String name, String labelText, Composite comp) {

From source file org.brainwy.liclipsetext.shared_ui.field_editors.ButtonFieldEditor.java

public class ButtonFieldEditor extends FieldEditor {

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

From source file org.brainwy.liclipsetext.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.brainwy.liclipsetext.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.brainwy.liclipsetext.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.caleydo.core.gui.util.SpinnerFieldEditor.java

/**
 * @author Samuel Gratzl
 *
 */
public class SpinnerFieldEditor extends FieldEditor {

From source file org.caleydo.view.info.selection.external.ExternalFieldEditor.java

/**
 * @author Samuel Gratzl
 *
 */
public class ExternalFieldEditor extends FieldEditor {

From source file org.cloudsmith.geppetto.pp.dsl.ui.preferences.editors.ListEditor.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.cloudsmith.geppetto.pp.dsl.ui.preferences.editors.StringFieldEditor.java

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