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.jboss.tools.modeshape.rest.preferences.IgnoredResourcesEditor.java

/**
 * The <code>IgnoredResourcesEditor</code> is an editor for managing a set of ignored resources.
 */
public final class IgnoredResourcesEditor extends FieldEditor {

    private Button btnAdd;

From source file org.jboss.tools.vpe.editor.preferences.SliderFieldEditor.java

public class SliderFieldEditor extends FieldEditor {

    private static final String SLIDER_LABEL_DEFAULT_TEXT = "50% "; //$NON-NLS-1$
    private static final String SLIDER_LABEL_MAX_SIZE_TEXT = "100% "; //$NON-NLS-1$
    private static final int MAX_SLIDER_VALUE = 1000;
    private static final int MIN_SLIDER_VALUE = 0;

From source file org.jboss.tools.vpe.editor.preferences.VpeColorFieldEditor.java

/**
 * A field editor for a color type preference.
 */
public class VpeColorFieldEditor extends FieldEditor {

    /**

From source file org.jboss.tools.vpe.editor.preferences.VpeComboFieldEditor.java

public class VpeComboFieldEditor extends FieldEditor {

    /**
     * The <code>Combo</code> widget.
     */
    private Combo fCombo;

From source file org.kalypso.contribs.eclipse.jface.preference.ComboStringFieldEditor.java

/**
 * A DropDown control is associated with this field editor so that the user can choose from an existing list of
 * elements. An option is provided to allow the user to enter an non-existing element.
 * 
 * @author schlienger
 */

From source file org.kmem.kosh.fieldeditors.LabelFieldEditor.java

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

    private Label label;

From source file org.kmem.kosh.fieldeditors.SpinnerFieldEditor.java

/**
 * A field editor for displaying Spinners not associated with other widgets.
 */
public class SpinnerFieldEditor extends FieldEditor {
    private Spinner m_spinner;
    private int m_min;

From source file org.knime.ext.dl4j.libs.prefs.LabelField.java

/**
 * Preference page field showing text.
 *
 * @author David Kolb, KNIME.com GmbH
 */
public class LabelField extends FieldEditor {

From source file org.knime.knip.base.prefs.HorizontalLineField.java

/**
 * Preference page field creating a horizontal separator.
 *
 * @author Peter Ohl, KNIME.com AG, Zurich, Switzerland
 */
public class HorizontalLineField extends FieldEditor {

From source file org.knime.knip.base.prefs.LabelField.java

/**
 * Preference page field showing text.
 *
 * @author Peter Ohl, KNIME.com AG, Zurich, Switzerland
 */
public class LabelField extends FieldEditor {