List of usage examples for org.eclipse.jface.preference FieldEditor subclass-usage
From source file net.sourceforge.eclipseccase.ui.preferences.TextAreaFieldEditor.java
/** * @author mikael petterson * */ public class TextAreaFieldEditor extends FieldEditor {
From source file net.sourceforge.texlipse.properties.editor.StyleListFieldEditor.java
/**
* A FieldEditor that holds a list of key-value-pairs as its value.
*
* The list of strings is converted into a single String object by
* putting a separator character between the items while concatenating.
*
From source file net.sourceforge.texlipse.properties.KeyValueListFieldEditor.java
/**
* A FieldEditor that holds a list of key-value-pairs as its value.
*
* The list of strings is converted into a single String object by
* putting a separator character between the items while concatenating.
*
From source file net.tourbook.common.font.FontFieldEditorExtended.java
/**
* This is a copy of {@link orgFontFieldEditor} with an open & close listener which is fired when
* the dialog is opened or closes. There are also other adjustments.
* <p>
* This can be used to keep parent dialog opened when the font dialog is opened.
*/
From source file net.yatomiya.e4.ui.preference.CompositeField.java
public class CompositeField extends FieldEditor { protected StructuredFieldEditorPreferencePage page; protected Composite parentComposite; protected int style; protected Composite control; protected List<FieldEditor> fields;
From source file net.yatomiya.e4.ui.preference.LabelField.java
public class LabelField extends FieldEditor { protected Label label; protected int style; public LabelField(String labelText, int style, Composite parent) { this.style = style;
From source file net.yatomiya.e4.ui.preference.SpinnerFieldEditor.java
public class SpinnerFieldEditor extends FieldEditor { private BigDecimalSpinner spinner; private int oldValue; public SpinnerFieldEditor(String name, String labelText, Composite parent, int min, int max, int increment,
From source file org.apache.opennlp.caseditor.namefinder.ConfirmedNameDetectionFieldEditor.java
public class ConfirmedNameDetectionFieldEditor extends FieldEditor { private Button forceDetectionButton; private Composite optionButtons;
From source file org.apache.opennlp.caseditor.namefinder.NameFinderModelFieldEditor.java
/** * Field editor for configuring name finder models and corresponding types. */ // TODO: // Model type names are encoded into two string and saved to the pref store.
From source file org.apache.opennlp.caseditor.TypeListFieldEditor.java
/** * Field Editor for a list of UIMA type names. */ // TODO: Enforce that no duplicate entries can be created public class TypeListFieldEditor extends FieldEditor {