List of usage examples for org.eclipse.jface.preference FieldEditor subclass-usage
From source file com.litrik.eclipse.xps.preferences.LEDColorFieldEditor.java
class LEDColorFieldEditor extends FieldEditor { private static String[] COLOR_NAMES = new String[] { "Off", "Ruby", "Citrine", "Amber", "Peridot", "Emerald", "Jade", "Topaz", "Tanzanite", "Aquamarine", "Sapphire", "Iolite", "Amythest", "Kunzite", "Rhodolite", "Coral", "Diamond" }; private Combo colorField;
From source file com.mg.merp.wb.core.ui.widgets.ComboFieldEditor.java
/**
* ? ? ? ?
*
* @author Valentin A. Poroxnenko
* @version $Id: ComboFieldEditor.java,v 1.3 2007/07/11 06:05:15 poroxnenko Exp $
*/
From source file com.mulgasoft.emacsplus.preferences.ButtonFieldEditor.java
/** * A stand-alone button for inclusion in a preference page * * @author Mark Feber - initial API and implementation */ public class ButtonFieldEditor extends FieldEditor {
From source file com.mulgasoft.emacsplus.preferences.MListEditor.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 Restoring defaults
* <p>
* Subclasses must implement the <code>parseString</code>,
From source file com.nokia.s60ct.gui.preferences.CustomRadioGroupFieldEditor.java
/** * A field editor for an enumeration type preference. * The choices are presented as a list of radio buttons. */ public class CustomRadioGroupFieldEditor extends FieldEditor {
From source file com.nokia.tools.carbidect.cone.ui.internal.preferences.ConeFieldEditor.java
public class ConeFieldEditor extends FieldEditor { /** * The list widget; <code>null</code> if none (before creation or after disposal). */ protected List list;
From source file com.nokia.traceviewer.engine.preferences.LabelFieldEditor.java
/** * Label Field Editor * */ class LabelFieldEditor extends FieldEditor {
From source file com.paulisse.eclipse.plugin.rsync.preferences.thirdparty.MultiLineStringFieldEditor.java
/**
* A field editor for a string type preference.
* <p>
* This class may be used as is, or subclassed as required.
* </p>
*/
From source file com.prodyna.bamboo.status.preferences.ProjectFieldEditor.java
/** * @author Andre Albert * */ public class ProjectFieldEditor extends FieldEditor {
From source file com.puppetlabs.geppetto.pp.dsl.ui.preferences.editors.ListEditor.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>