List of usage examples for org.eclipse.jface.preference StringFieldEditor subclass-usage
From source file com.ivenix.debug.core.preferences.StringVariableFieldEditor.java
public class StringVariableFieldEditor extends StringFieldEditor { // ------------------------------------------------------------------------ protected String fVariableName; protected String fVariableDescription;
From source file com.qcenzo.tools.localize.preferences.TextInputEditor.java
public class TextInputEditor extends StringFieldEditor { public TextInputEditor(String name, String labelText, String comments, Composite parent) { super(name, labelText, parent); if (comments != null) createCommentLabel(comments, parent); }
From source file de.bmw.yamaica.common.ui.utils.ExtendedStringFieldEditor.java
public class ExtendedStringFieldEditor extends StringFieldEditor { private Pattern pattern; public ExtendedStringFieldEditor(String name, String labelText, Composite parent) { super(name, labelText, parent); }
From source file de.fhg.igd.mapviewer.server.tiles.wizard.pages.ConfigurationNameFieldEditor.java
/** * Custom tile map server Name editor * * @author Arun */ public class ConfigurationNameFieldEditor extends StringFieldEditor {
From source file de.fhg.igd.mapviewer.server.tiles.wizard.pages.ConfigurationURLFieldEditor.java
/** * Custom tile map server URL pattern editor * * @author Arun */ public class ConfigurationURLFieldEditor extends StringFieldEditor {
From source file de.fhg.igd.mapviewer.server.wms.wizard.pages.ConfigurationNameFieldEditor.java
/** * Field editor for a WMS configuration name * * @author Simon Templer */ public class ConfigurationNameFieldEditor extends StringFieldEditor {
From source file de.fhg.igd.mapviewer.server.wms.wizard.pages.WMSLocationFieldEditor.java
/** * WMS location field editor * * @author Simon Templer */ public class WMSLocationFieldEditor extends StringFieldEditor {
From source file eu.esdihumboldt.hale.io.csv.ui.TypeNameField.java
/** * The Class specifying the TextField for the Typename * * @author Kevin Mais */ public class TypeNameField extends StringFieldEditor {
From source file eu.esdihumboldt.hale.ui.io.util.URIFieldEditor.java
/** * A field editor for URIs. Does validation based on the URI syntax. * * @author Simon Templer */ public class URIFieldEditor extends StringFieldEditor {
From source file eu.esdihumboldt.hale.ui.io.util.URLFieldEditor.java
/**
* A field editor for URLs. Does validation based on the URL syntax and
* available protocols.
*
* @author Simon Templer
*/