List of usage examples for org.eclipse.jface.preference FieldEditor subclass-usage
From source file org.csstudio.display.builder.rcp.preferences.TextAreaFieldEditor.java
/** Based on org.eclipse.jface.preference.StringFieldEditor * of Eclipse 4.5.1, changing the Text into a multi-line * and adding constructor for its size. */ public class TextAreaFieldEditor extends FieldEditor { /**
From source file org.csstudio.domain.common.ui.AbstractTableFieldEditor.java
/**
* This class is a copy from the abstract eclipse class 'ListEditor' with
* changes that now the items are not displayed in a 'List' but in a 'Table'. In
* addition the items in the table are editable.
*
* @author jhatje
From source file org.csstudio.logging.ui.LabelFieldEditor.java
/** Pseudo {@link FieldEditor} that displays a text
* <p>
* While the {@link FieldEditorPreferencePage} is convenient for
* handling the preference access, it does not offer many
* layout options.
* <p>
From source file org.csstudio.opibuilder.preferences.StringTableFieldEditor.java
/**Field Editor for String table (a 2D String Array) input. * @author Xihui Chen * */ public class StringTableFieldEditor extends FieldEditor {
From source file org.csstudio.pch.eventlist.TableColumnsFieldEditor.java
/** Preference dialog field editor for property columns * @author Kay Kasemir */ public class TableColumnsFieldEditor extends FieldEditor { private List<String> columns; private Label label;
From source file org.csstudio.security.ui.PasswordFieldEditor.java
/** Preference editor for 'passwords'
*
* <p>If no secure preference is set, read the 'normal' preference.
* The 'default' value is also fetched from the normal preference store,
* to allow setting a default in plugin_custommization.ini etc.
* Entered passwords, however, are always writes to the secure preference store.
From source file org.csstudio.trends.databrowser2.preferences.StringTableFieldEditor.java
/** Field Editor for preferences shown in a StringTableEditor * @author Xihui Chen - Original author, org.csstudio.opibuilder.preferences.StringTableFieldEditor * @author Kay Kasemir */ public class StringTableFieldEditor extends FieldEditor { final private String headers[];
From source file org.csstudio.trends.databrowser3.preferences.StringTableFieldEditor.java
/** Field Editor for preferences shown in a StringTableEditor * @author Xihui Chen - Original author, org.csstudio.opibuilder.preferences.StringTableFieldEditor * @author Kay Kasemir */ public class StringTableFieldEditor extends FieldEditor { final private String headers[];
From source file org.csstudio.ui.menu.pvscript.ScriptInfoFieldEditor.java
/** Field Editor for scripts' list of description and command.
*
* <p>The preference is internally stored as a string,
* but we encode/decode a list of {@link ScriptInfo} entries
* in that list and edit it with a {@link StringTableEditor}
* @author Kay Kasemir
From source file org.csstudio.utility.screenshot.preference.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. */ public class AddRemoveListFieldEditor extends FieldEditor {