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 it.albertus.jface.preference.field.ComboFieldEditor.java

/**
 * A field editor for a combo box that allows the drop-down selection of one of
 * a list of items.
 * 
 * @since 3.3
 */

From source file it.baeyens.arduino.ui.MultiLineTextFieldEditor.java

/**
 * MultiLineTextFieldEditor. Field editor that is same as string field editor
 * but will have the multi line text field for user input.
 */
public class MultiLineTextFieldEditor extends FieldEditor {

From source file kieker.develop.rl.ui.preferences.CommentFieldEditor.java

/**
 * Editor for a the header comment fields in the preference tab.
 *
 * @author Reiner Jung
 *
 */

From source file mt.com.southedge.jclockwork.plugin.preferences.fieldeditors.collections.JClockWorkFieldEditor.java

/**
 * @author cfrendo
 * 
 */
public abstract class JClockWorkFieldEditor extends FieldEditor {

From source file mt.com.southedge.jclockwork.plugin.preferences.fieldeditors.LabelFieldEditor.java

/**
 * @author cfrendo
 * 
 */
public class LabelFieldEditor extends FieldEditor {

From source file net.bioclipse.qsar.ui.prefs.UpDownListEditor.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 net.bpelunit.framework.client.eclipse.preferences.ComboFieldEditor.java

/**
 * A field editor for a combo box that allows the drop-down selection of one of a list of items.
 * 
 * Taken from org.eclipse.jdt.internal.debug.ui.launcher.ComboFieldEditor and extended to allow
 * external reactions to selections.
 * 

From source file net.bpelunit.framework.client.eclipse.preferences.OptionTableFieldEditor.java

/**
 * A table-based editor for adding, changing, and removing options for a
 * deployer.
 * 
 * This is a heavily changed copy of org.eclipse.jface.preference.ListEditor,
 * extended to use a table instead of a list and accomodating methods targeted

From source file net.openchrom.xxd.processor.supplier.rscripting.ui.preferences.ComboFieldEditor.java

/**
 * A field editor for a combo box that allows the drop-down selection of one of a list of items.
 * 
 * This class is copied from Eclipse.
 */
public class ComboFieldEditor extends FieldEditor {

From source file net.openchrom.xxd.processor.supplier.rscripting.ui.preferences.LabelFieldEditor.java

class LabelFieldEditor extends FieldEditor {

    private Label label;

    public LabelFieldEditor(String value, Composite parent) {
        super("label", value, parent);