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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

CellEditor()
Creates a new cell editor with no control The cell editor has no cell validator.
CellEditor(Composite parent)
Creates a new cell editor under the given parent control.
CellEditor(Composite parent, int style)
Creates a new cell editor under the given parent control.

Method

voidactivate()
Activates this cell editor.
voidaddListener(ICellEditorListener listener)
Adds a listener to this cell editor.
voidaddPropertyChangeListener(IPropertyChangeListener listener)
Adds a property change listener to this cell editor.
voidcreate(Composite parent)
Creates the control for this cell editor under the given parent control.
voiddeactivate()
Hides this cell editor's control.
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.
LayoutDatagetLayoutData()
Returns a layout data object for this cell editor.
ICellEditorValidatorgetValidator()
Returns the input validator 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.
booleanisValueValid()
Returns whether this cell editor has a valid value.
voidperformSelectAll()
Performs the select all action.
voidremoveListener(ICellEditorListener listener)
Removes the given listener from this cell editor.
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.