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.compiere.mfg_scm.eclipse.db.editors.ComboFieldEditor.java

/**
 * A field editor for a combo box that allows the drop-down selection of one of
 * a list of items.
 * 
 * XXX: Note this is a copy from org.eclipse.debug.internal.ui.preferences This
 * class can be removed once bug 24928 is fixed.

From source file org.cs3.pdt.connector.util.preferences.MyLabelFieldEditor.java

public class MyLabelFieldEditor extends FieldEditor implements FieldEditorForStructuredPreferencePage {

    private Text field;
    private Composite parent;

    public MyLabelFieldEditor(Composite parent, String name) {

From source file org.cs3.pdt.graphicalviews.preferences.controls.NodeSizeRadioGroupFieldEditor.java

public class NodeSizeRadioGroupFieldEditor extends FieldEditor {

    String widthMode;
    String numberOfLines;
    String width;

From source file org.cs3.pdt.graphicalviews.preferences.controls.RefreshModeFieldEditor.java

public class RefreshModeFieldEditor extends FieldEditor {

    Button rbManual;
    Button rbAutomatic;
    String value;

From source file org.cs3.pdt.graphicalviews.preferences.controls.SkinsEditor.java

public class SkinsEditor extends FieldEditor {

    private Combo templatesCombo;
    private Text newTemplateName;

    public SkinsEditor(Composite parent) {

From source file org.cs3.prolog.ui.util.FileListEditor.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.cs3.prolog.ui.util.preferences.MyLabelFieldEditor.java

public class MyLabelFieldEditor extends FieldEditor implements FieldEditorForStructuredPreferencePage {

    private Text field;
    private Composite parent;

    public MyLabelFieldEditor(Composite parent, String name) {

From source file org.csstudio.alarm.beast.msghist.TableColumnsFieldEditor.java

/** Preference dialog field editor for property columns
 *  @author Kay Kasemir
 */
public class TableColumnsFieldEditor extends FieldEditor {
    private List<String> columns;
    private Label label;

From source file org.csstudio.desy.logging.ui.StringAreaEditor.java

public class StringAreaEditor extends FieldEditor {

    private static final Logger LOG = LoggerFactory.getLogger(StringAreaEditor.class);

    public static int UNLIMITED = -1;
    private Text textField;

From source file org.csstudio.display.builder.rcp.preferences.MacrosFieldEditor.java

/** Preference field editor for macros
 *
 *  <p>SWT field editor that wraps the JFX MacrosTable
 *
 *  @author Kay Kasemir
 */