Java org.eclipse.jface.viewers TextCellEditor fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jface.viewers TextCellEditor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jface.viewers TextCellEditor.

The text is from its open source code.

Subclass

org.eclipse.jface.viewers.TextCellEditor has subclasses.
Click this link to see all its subclasses.

Constructor

TextCellEditor(Composite parent)
Creates a new text string cell editor parented under the given control.
TextCellEditor(Composite parent, int style)
Creates a new text string cell editor parented under the given control.
TextCellEditor()
Creates a new text string cell editor with no control The cell editor value is the string itself, which is initially the empty string.

Method

voidaddListener(ICellEditorListener listener)
Adds a listener to this cell editor.
voiddispose()
Disposes of this cell editor and frees any associated SWT resources.
ControlgetControl()
Returns the control used to implement this cell editor.
StringgetErrorMessage()
Returns the current error message for this cell editor.
ObjectgetValue()
Returns this cell editor's value provided that it has a valid one.
booleanisActivated()
Returns whether this cell editor is activated.
booleanisCopyEnabled()
The TextCellEditor implementation of this CellEditor method returns true if the current selection is not empty.
booleanisCutEnabled()
The TextCellEditor implementation of this CellEditor method returns true if the current selection is not empty.
booleanisDeleteEnabled()
The TextCellEditor implementation of this CellEditor method returns true if there is a selection or if the caret is not positioned at the end of the text.
booleanisRedoEnabled()
Returns true if this cell editor is able to perform the redo action.
booleanisSelectAllEnabled()
Returns true if this cell editor is able to perform the select all action.
booleanisUndoEnabled()
Returns true if this cell editor is able to perform the undo action.
voidperformCopy()
The TextCellEditor implementation of this CellEditor method copies the current selection to the clipboard.
voidperformCut()
The TextCellEditor implementation of this CellEditor method cuts the current selection to the clipboard.
voidperformDelete()
The TextCellEditor implementation of this CellEditor method deletes the current selection or, if there is no selection, the character next character from the current position.
voidperformRedo()
Performs the redo action.
voidperformSelectAll()
The TextCellEditor implementation of this CellEditor method selects all of the current text.
voidperformUndo()
Performs the undo action.
voidsetFocus()
Sets the focus to the cell editor's control.
voidsetStyle(int style)
Sets the style bits for this cell editor.
voidsetValidator(ICellEditorValidator validator)
Sets the input validator for this cell editor.
voidsetValue(Object value)
Sets this cell editor's value.