List of usage examples for org.eclipse.jface.preference StringFieldEditor subclass-usage
From source file org.mailster.gui.prefs.widgets.HostFieldEditor.java
/**
* ---<br>
* Mailster (C) 2007-2009 De Oliveira Edouard
* <p>
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
From source file org.nightlabs.base.ui.pref.DoubleFieldEditor.java
/** * {@link FieldEditor} for editing {@link Double} values. */ public class DoubleFieldEditor extends StringFieldEditor { private double minValidValue = 0; private double maxValidValue = Double.MAX_VALUE;
From source file org.nightlabs.base.ui.pref.FloatFieldEditor.java
/** * {@link FieldEditor} for editing {@link Float} values. */ public class FloatFieldEditor extends StringFieldEditor { private float minValidValue = 0; private float maxValidValue = Float.MAX_VALUE;
From source file org.polymap.service.ui.StringFieldEditor2.java
/** * * * @author <a href="http://www.polymap.de">Falko Brutigam</a> */ public class StringFieldEditor2 extends StringFieldEditor {
From source file org.python.pydev.editor.saveactions.PydevDateFieldNameEditor.java
/**
* Implements validation on updating the name of the date field.
*
* @author Andr Berg
* @version 0.1
*/
From source file org.python.pydev.shared_ui.field_editors.MultiStringFieldEditor.java
public class MultiStringFieldEditor extends StringFieldEditor { /** * Text limit of text field in characters; initially unlimited. */ private int textLimit = UNLIMITED;
From source file org.python.pydev.utils.MultiStringFieldEditor.java
public class MultiStringFieldEditor extends StringFieldEditor { /** * Text limit of text field in characters; initially unlimited. */ private int textLimit = UNLIMITED;
From source file org.robotframework.red.jface.preferences.RegexValidatedStringFieldEditor.java
/** * @author Michal Anglart * */ public class RegexValidatedStringFieldEditor extends StringFieldEditor {
From source file org.s23m.cell.eclipse.preferences.ui.editors.PasswordFieldEditor.java
public final class PasswordFieldEditor extends StringFieldEditor { public PasswordFieldEditor(final String name, final String labelText, final Composite parent) { super(name, labelText, UNLIMITED, parent); final Text textControl = getTextControl(); textControl.setEchoChar('*');
From source file org.spearce.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;