List of usage examples for org.eclipse.jface.preference FieldEditor subclass-usage
From source file tern.eclipse.ide.server.nodejs.internal.ui.preferences.CheckComboFieldEditor.java
/** * A field editor for a checkboxed combo box that allows the drop-down selection * of one of a list of items. */ public class CheckComboFieldEditor extends FieldEditor {
From source file tern.eclipse.ide.server.nodejs.internal.ui.preferences.StringComboFieldEditor.java
public class StringComboFieldEditor extends FieldEditor { public static final int VALIDATE_ON_KEY_STROKE = 0; public static final int VALIDATE_ON_FOCUS_LOST = 1; public static int UNLIMITED = -1; private boolean isValid; protected String oldValue;
From source file tern.eclipse.ide.ui.preferences.CheckComboFieldEditor.java
/** * A field editor for a checkboxed combo box that allows the drop-down selection * of one of a list of items. */ public class CheckComboFieldEditor extends FieldEditor {
From source file tern.eclipse.ide.ui.preferences.ComboViewerFieldEditor.java
/** * A field editor for a combo box that allows the drop-down selection of one of * a list of items with label/content provider. * */ public abstract class ComboViewerFieldEditor extends FieldEditor {
From source file tern.eclipse.ide.ui.preferences.StringComboFieldEditor.java
public class StringComboFieldEditor extends FieldEditor { public static final int VALIDATE_ON_KEY_STROKE = 0; public static final int VALIDATE_ON_FOCUS_LOST = 1; public static int UNLIMITED = -1; private boolean isValid; protected String oldValue;
From source file tinyos.dlrc.environment.basic.preferences.widgets.ComboFieldEditor.java
/**
* A field editor for a combo box that allows the drop-down selection of one of
* a list of items.<br>
* This editor is a copy of {@link org.eclipse.jface.preference.ComboFieldEditor},
* new valuable methods, like query the current value, have been added.
* @since 3.3
From source file tinyos.yeti.environment.basic.preferences.widgets.ComboFieldEditor.java
/**
* A field editor for a combo box that allows the drop-down selection of one of
* a list of items.<br>
* This editor is a copy of {@link org.eclipse.jface.preference.ComboFieldEditor},
* new valuable methods, like query the current value, have been added.
* @since 3.3
From source file uk.ac.gda.ui.preferences.LabelFieldEditor.java
/** * A "fake" field editor to allow a label to be added in a simple preferences page */ public class LabelFieldEditor extends FieldEditor { private static int counter = 0;
From source file uk.ac.gda.ui.preferences.ScaleBoxFieldEditor.java
/**
* A field editor for a double preference.
* <p>
* This class may be used as is, or subclassed as required.
* </p>
*/