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 de.unistuttgart.ipvs.pmp.editor.ui.preferences.TestButton.java

public class TestButton extends FieldEditor {

    private Label status;
    private Composite parent;

    public TestButton(String label, Composite parent) {

From source file de.urszeidler.eclipse.solidity.ui.preferences.SeperatorFieldEditor.java

/**
 * @author uzeidler
 *
 */
public class SeperatorFieldEditor extends FieldEditor {

From source file eclox.core.ui.DefaultDoxygenFieldEditor.java

/**
 * @author Guillaume Brocker
 */
public class DefaultDoxygenFieldEditor extends FieldEditor {

    /**

From source file es.cv.gvcase.mdt.common.preferences.LabelledScaleFieldEditor.java

public class LabelledScaleFieldEditor extends FieldEditor {
    /**
     * Value that will feed Scale.setIncrement(int).
     */
    private int incrementValue;
    /**

From source file eu.esdihumboldt.hale.io.gml.ui.wfs.wizard.WfsLocationFieldEditor.java

/**
 * WFS location field editor
 * 
 * @author Simon Templer
 */
public class WfsLocationFieldEditor extends FieldEditor {

From source file eu.esdihumboldt.hale.io.wfs.ui.capabilities.WFSCapabilitiesFieldEditor.java

/**
 * WFS location field editor
 * 
 * @author Simon Templer
 */
public class WFSCapabilitiesFieldEditor extends FieldEditor {

From source file eu.esdihumboldt.hale.ui.util.components.PasswordFieldEditor.java

/**
 * Password field editor that uses {@link ISecurePreferences}
 * 
 * When using it be careful to also include the org.eclipse.equinox.security.ui
 * bundle or add you own secure storage module through the extension point
 * 

From source file fr.inria.diverse.commons.eclipse.jface.preference.TextFieldEditor.java

/**
 * A field editor for a multi-line string type preference.
 * 
 * Copied shamelessly from StringFieldEditor (Eclipse v3.0, M7)
 */
public class TextFieldEditor extends FieldEditor {

From source file gov.nasa.ensemble.common.ui.PickListFieldEditor.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 gov.nasa.ensemble.common.ui.PickListSetEditor.java

public class PickListSetEditor extends FieldEditor {

    private static final String ITEM_NEW = "New...";
    private Combo combo = null;
    private Map<String, PickListSet> setsByName = new HashMap<String, PickListSet>();
    private PickListFieldEditor pickListEditor = null;