Example usage for org.eclipse.jface.preference StringFieldEditor subclass-usage

List of usage examples for org.eclipse.jface.preference StringFieldEditor subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.preference StringFieldEditor subclass-usage.

Usage

From source file org.springframework.ide.eclipse.boot.ui.preferences.RegExpFieldEditor.java

/**
 * StringFieldEditor which validates its input by parsing as a java.util.Pattern.
 *
 * @author Kris De Volder
 */
public class RegExpFieldEditor extends StringFieldEditor {

From source file org.wesnoth.jface.RegexStringFieldEditor.java

/**
 * A FieldEditor based on the {@link StringFieldEditor} which
 * can validate the value against a regex value
 */
public class RegexStringFieldEditor extends StringFieldEditor {
    protected String regex_;

From source file plugin.preference.DoubleFieldEditor.java

/**
 * A field editor for a double type preference.
 * <p>
 * This class may be freely distributed as part of any application or plugin.
 * <p>
 * 

From source file Presentation.preferences.DoubleFieldEditor.java

public class DoubleFieldEditor extends StringFieldEditor {
    /**
     * a 64-bit double has 15-17 decimal digit precision
     * + 7 (1 for decimal point, 1 for negative sign, 5 for E-xxx)
     */
    static final int DEFAULT_TEXT_LIMIT = 24;