|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.eclipse.jface.preference.FieldEditor
com.aptana.ide.core.ui.widgets.TextFieldEditor
public class TextFieldEditor
TextFieldEditor. This would extend StringFieldEditor if the API developers had decided to make textField _protected_ or at least allow me to set it!
| Field Summary | |
|---|---|
static int |
UNLIMITED
Text limit constant (value -1) indicating unlimited text limit and width. |
static int |
VALIDATE_ON_FOCUS_LOST
Validation strategy constant (value 1) indicating that the editor should
perform validation only when the text widget loses focus. |
static int |
VALIDATE_ON_KEY_STROKE
Validation strategy constant (value 0) indicating that the editor should
perform validation after every key stroke. |
| Fields inherited from class org.eclipse.jface.preference.FieldEditor |
|---|
HORIZONTAL_GAP, IS_VALID, VALUE |
| Constructor Summary | |
|---|---|
protected |
TextFieldEditor()
Creates a new string field editor |
|
TextFieldEditor(java.lang.String name,
java.lang.String labelText,
org.eclipse.swt.widgets.Composite parent)
Creates a string field editor of unlimited width. |
|
TextFieldEditor(java.lang.String name,
java.lang.String labelText,
int width,
org.eclipse.swt.widgets.Composite parent)
Creates a string field editor. |
|
TextFieldEditor(java.lang.String name,
java.lang.String labelText,
int width,
int strategy,
org.eclipse.swt.widgets.Composite parent,
int swtStyle)
Creates a string field editor. |
| Method Summary | |
|---|---|
protected void |
adjustForNumColumns(int numColumns)
(non-Javadoc) Method declared on FieldEditor. |
protected boolean |
checkState()
Checks whether the text input field contains a valid value or not. |
protected boolean |
doCheckState()
Hook for subclasses to do specific state checks. |
protected void |
doFillIntoGrid(org.eclipse.swt.widgets.Composite parent,
int numColumns)
Fills this field editor's basic controls into the given parent. |
protected void |
doLoad()
(non-Javadoc) Method declared on FieldEditor. |
protected void |
doLoadDefault()
(non-Javadoc) Method declared on FieldEditor. |
protected void |
doStore()
(non-Javadoc) Method declared on FieldEditor. |
java.lang.String |
getErrorMessage()
Returns the error message that will be displayed when and if an error occurs. |
int |
getNumberOfControls()
(non-Javadoc) Method declared on FieldEditor. |
java.lang.String |
getStringValue()
Returns the field editor's value. |
org.eclipse.swt.widgets.Text |
getTextControl()
Returns this field editor's text control. |
org.eclipse.swt.widgets.Text |
getTextControl(org.eclipse.swt.widgets.Composite parent)
Returns this field editor's text control. |
boolean |
isEmptyStringAllowed()
Returns whether an empty string is a valid value. |
boolean |
isValid()
(non-Javadoc) Method declared on FieldEditor. |
protected void |
refreshValidState()
(non-Javadoc) Method declared on FieldEditor. |
void |
setEmptyStringAllowed(boolean b)
Sets whether the empty string is a valid value or not. |
void |
setEnabled(boolean enabled,
org.eclipse.swt.widgets.Composite parent)
|
void |
setErrorMessage(java.lang.String message)
Sets the error message that will be displayed when and if an error occurs. |
void |
setFocus()
(non-Javadoc) Method declared on FieldEditor. |
void |
setStringValue(java.lang.String value)
Sets this field editor's value. |
void |
setTextLimit(int limit)
Sets this text field's text limit. |
void |
setValidateStrategy(int value)
Sets the strategy for validating the text. |
void |
showErrorMessage()
Shows the error message set via setErrorMessage. |
protected void |
valueChanged()
Informs this field editor's listener, if it has one, about a change to the value ( VALUE
property) provided that the old and new values are different. |
| Methods inherited from class org.eclipse.jface.preference.FieldEditor |
|---|
applyFont, checkParent, clearErrorMessage, clearMessage, convertHorizontalDLUsToPixels, convertVerticalDLUsToPixels, createControl, dispose, fillIntoGrid, fireStateChanged, fireValueChanged, getFieldEditorFontName, getLabelControl, getLabelControl, getLabelText, getPage, getPreferenceName, getPreferencePage, getPreferenceStore, init, load, loadDefault, presentsDefaultValue, setButtonLayoutData, setLabelText, setPage, setPreferenceName, setPreferencePage, setPreferenceStore, setPresentsDefaultValue, setPropertyChangeListener, showErrorMessage, showMessage, store |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int VALIDATE_ON_KEY_STROKE
0) indicating that the editor should
perform validation after every key stroke.
setValidateStrategy(int),
Constant Field Valuespublic static final int VALIDATE_ON_FOCUS_LOST
1) indicating that the editor should
perform validation only when the text widget loses focus.
setValidateStrategy(int),
Constant Field Valuespublic static int UNLIMITED
-1) indicating unlimited text limit and width.
| Constructor Detail |
|---|
protected TextFieldEditor()
public TextFieldEditor(java.lang.String name,
java.lang.String labelText,
int width,
int strategy,
org.eclipse.swt.widgets.Composite parent,
int swtStyle)
setTextLimit to limit the text.
name - the name of the preference this field editor works onlabelText - the label text of the field editorwidth - the width of the text input field in characters, or UNLIMITED for
no limitstrategy - either VALIDATE_ON_KEY_STROKE to perform on the fly checking (the
default), or VALIDATE_ON_FOCUS_LOST to perform validation only
after the text has been typed inparent - the parent of the field editor's controlswtStyle - The SWT text style commands
public TextFieldEditor(java.lang.String name,
java.lang.String labelText,
int width,
org.eclipse.swt.widgets.Composite parent)
setTextLimit to limit the text.
name - the name of the preference this field editor works onlabelText - the label text of the field editorwidth - the width of the text input field in characters, or UNLIMITED for
no limitparent - the parent of the field editor's control
public TextFieldEditor(java.lang.String name,
java.lang.String labelText,
org.eclipse.swt.widgets.Composite parent)
setTextLimit
to limit the text.
name - the name of the preference this field editor works onlabelText - the label text of the field editorparent - the parent of the field editor's control| Method Detail |
|---|
protected void adjustForNumColumns(int numColumns)
adjustForNumColumns in class org.eclipse.jface.preference.FieldEditornumColumns - protected boolean checkState()
true if the field value is valid, and false if invalidprotected boolean doCheckState()
The default implementation of this framework method does nothing and returns
true. Subclasses should override this method to specific state checks.
true if the field value is valid, and false if invalid
protected void doFillIntoGrid(org.eclipse.swt.widgets.Composite parent,
int numColumns)
The string field implementation of this FieldEditor framework method
contributes the text field. Subclasses may override but must call
super.doFillIntoGrid.
doFillIntoGrid in class org.eclipse.jface.preference.FieldEditorparent - numColumns - protected void doLoad()
doLoad in class org.eclipse.jface.preference.FieldEditorprotected void doLoadDefault()
doLoadDefault in class org.eclipse.jface.preference.FieldEditorprotected void doStore()
doStore in class org.eclipse.jface.preference.FieldEditorpublic java.lang.String getErrorMessage()
null if nonepublic int getNumberOfControls()
getNumberOfControls in class org.eclipse.jface.preference.FieldEditorpublic java.lang.String getStringValue()
public org.eclipse.swt.widgets.Text getTextControl()
null if no text field is created yetpublic org.eclipse.swt.widgets.Text getTextControl(org.eclipse.swt.widgets.Composite parent)
The control is created if it does not yet exist
parent - the parent
public boolean isEmptyStringAllowed()
true if an empty string is a valid value, and false if
an empty string is invalidsetEmptyStringAllowed(boolean)public boolean isValid()
isValid in class org.eclipse.jface.preference.FieldEditorprotected void refreshValidState()
refreshValidState in class org.eclipse.jface.preference.FieldEditorpublic void setEmptyStringAllowed(boolean b)
b - true if the empty string is allowed, and false if it
is considered invalidpublic void setErrorMessage(java.lang.String message)
message - the error messagepublic void setFocus()
setFocus in class org.eclipse.jface.preference.FieldEditorpublic void setStringValue(java.lang.String value)
value - the new value, or null meaning the empty stringpublic void setTextLimit(int limit)
limit - the limit on the number of character in the text input field, or
UNLIMITED for no limitpublic void setValidateStrategy(int value)
Calling this method has no effect after createPartControl is called. Thus this
method is really only useful for subclasses to call in their constructor. However, it has
public visibility for backward compatibility.
value - either VALIDATE_ON_KEY_STROKE to perform on the fly checking (the
default), or VALIDATE_ON_FOCUS_LOST to perform validation only
after the text has been typed inpublic void showErrorMessage()
setErrorMessage.
protected void valueChanged()
VALUE
property) provided that the old and new values are different.
This hook is not called when the text is initialized (or reset to the default value) from the preference store.
public void setEnabled(boolean enabled,
org.eclipse.swt.widgets.Composite parent)
setEnabled in class org.eclipse.jface.preference.FieldEditorenabled - parent - FieldEditor.setEnabled(boolean,Composite)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||