List of usage examples for org.eclipse.jface.preference StringFieldEditor subclass-usage
From source file org.csstudio.diirt.util.preferences.jface.DoubleFieldEditor.java
/**
* A field editor for an double type preference.
*
* @author Claudio Rosati, European Spallation Source ERIC
* @version 1.0.0 8 Dec 2016
*/
From source file org.csstudio.platform.libs.hibernate.ui.preferences.MultiLineStringFieldEditor.java
/**
* @author hrickens
* @author $Author$
* @version $Revision$
* @since 24.04.2009
*/
From source file org.eclipse.buckminster.ui.prefs.PasswordFieldEditor.java
/**
* A field editor for a password type preference. The key ring is used for
* storing the editor value.
*
* @author Karel Brezina
*
From source file org.eclipse.cdt.cmake.ui.DestdirFieldEditor.java
/**
* An abstract field editor for a string type preference that presents
* a string input field with a change button to its right to edit the
* input field's content. When the user presses the change button, the
* abstract framework method <code>changePressed()</code> gets called
* to compute a new string.
From source file org.eclipse.cdt.dsf.debug.internal.ui.preferences.DecoratingStringFieldEditor.java
/** * A {@link StringFieldEditor} with field decoration. * @since 1.1 */ public class DecoratingStringFieldEditor extends StringFieldEditor {
From source file org.eclipse.cdt.managedbuilder.ui.properties.StringFieldEditorM.java
/**
* This class behaves in the same way as its parent,
* but gives public access to its Text widget, and
* valueChanged() can be called outside.
*
* It allows to add extra listeners to Text widget.
From source file org.eclipse.dd.dsf.debug.internal.ui.preferences.DecoratingStringFieldEditor.java
/** * A {@link StringFieldEditor} with field decoration. * @since 1.1 */ public class DecoratingStringFieldEditor extends StringFieldEditor {
From source file org.eclipse.egit.ui.internal.preferences.StorageSizeFieldEditor.java
class StorageSizeFieldEditor extends StringFieldEditor { private static final int KB = 1024; private static final int MB = 1024 * KB; private static final int GB = 1024 * MB;
From source file org.eclipse.imp.preferences.fields.DoubleFieldEditor.java
public class DoubleFieldEditor extends StringFieldEditor { // From DoubleFieldEditor protected double minValidValue = Double.MIN_VALUE; protected double maxValidValue = Double.MAX_VALUE; protected static final int DEFAULT_TEXT_LIMIT = 15;
From source file org.eclipse.imp.preferences.fields.IntegerFieldEditor.java
public class IntegerFieldEditor extends StringFieldEditor { // From IntegerFieldEditor protected int minValidValue = 0; protected int maxValidValue = Integer.MAX_VALUE; protected static final int DEFAULT_TEXT_LIMIT = 10;