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 net.openchrom.xxd.processor.supplier.rscripting.ui.preferences.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 net.refractions.udig.project.ui.FeatureEditorFieldEditor.java

/**
 * Editor for modifying the default SimpleFeature Editor
 * 
 * @author Jesse
 * @since 1.1.0
 */

From source file net.refractions.udig.ui.preferences.CharSetFieldEditor.java

public final class CharSetFieldEditor extends FieldEditor {
    private Text text;

    public CharSetFieldEditor(String name, String labelText, Composite parent) {
        super(name, labelText, parent);
    }

From source file net.refractions.udig.ui.preferences.RuntimeFieldEditor.java

public final class RuntimeFieldEditor extends FieldEditor {
    public static final String WORKSPACE_PATH = "WORKSPACE_PATH"; //$NON-NLS-1$
    public static final String LANGUAGE = "LANGUAGE"; //$NON-NLS-1$
    public static final String MEMORY = "MEMORY"; //$NON-NLS-1$
    public static final String PROXYSET = "http.proxySet"; //$NON-NLS-1$
    public static final String PROXYHOST = "http.proxyHost"; //$NON-NLS-1$

From source file net.sf.commonclipse.preferences.AddRemoveListFieldEditor.java

/**
 * A field editor for displaying and storing a list of strings. Buttons are provided for adding items to the list and
 * removing items from the list. Implementation from
 * http://www.eclipse.org/articles/Article-Field-Editors/field_editors.html
 * @author fgiust
 * @version $Revision: 77 $ ($Author: fgiust $)

From source file net.sf.commonclipse.preferences.ComboFieldEditor.java

/**
 * Implementation identical to StringFieldEditor but using a combo instead of a Text field.
 * @author fgiust
 * @version $Revision: 1.4 $ ($Author: fgiust $)
 */
public class ComboFieldEditor extends FieldEditor {

From source file net.sf.commonclipse.preferences.LabelFieldEditor.java

/**
 * A field editor for displaying labels not associated with other widgets.
 * @author fgiust
 * @version $Revision: 1.3 $ ($Author: fgiust $)
 */
public class LabelFieldEditor extends FieldEditor {

From source file net.sf.eclipse.tomcat.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 net.sf.kerner.utils.rcp.LabelFieldEditor.java

public class LabelFieldEditor extends FieldEditor {

    private static int counter = 0;

    private Label label;

From source file net.sf.webcat.eclipse.cxxtest.preferences.CancelableBooleanFieldEditor.java

/**
 * 
 * @author  Tony Allevato (Virginia Tech Computer Science)
 * @author  latest changes by: $Author: aallowat $
 * @version $Revision: 1.2 $ $Date: 2009/09/13 12:59:29 $
 */