![]() |
GrammarScope
4.0.0
|
Classes | |
class | EditorDelegate |
Public Member Functions | |
TextCellEditor (final JTextPane textPane) | |
Component | getComponent () |
void | setClickCountToStart (final int count) |
int | getClickCountToStart () |
Object | getCellEditorValue () |
boolean | isCellEditable (final EventObject anEvent) |
boolean | shouldSelectCell (final EventObject anEvent) |
boolean | stopCellEditing () |
void | cancelCellEditing () |
Component | getTreeCellEditorComponent (final JTree tree, final Object value, final boolean isSelected, final boolean expanded, final boolean leaf, final int row) |
Component | getTableCellEditorComponent (final JTable table, final Object value, final boolean isSelected, final int row, final int column) |
Protected Attributes | |
final JComponent | editorComponent |
final EditorDelegate | delegate |
int | clickCountToStart |
Static Private Attributes | |
static final long | serialVersionUID = 1L |
The default editor for table and tree cells.
Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans
package.
grammarscope.common.model.TextCellEditor.TextCellEditor | ( | final JTextPane | textPane | ) |
Constructs a DefaultCellEditor
that uses a text field.
textPane | a JTextPane object |
void grammarscope.common.model.TextCellEditor.cancelCellEditing | ( | ) |
Forwards the message from the CellEditor
to the delegate
.
Object grammarscope.common.model.TextCellEditor.getCellEditorValue | ( | ) |
Forwards the message from the CellEditor
to the delegate
.
Reimplemented in grammarscope.editor.component.TregexPatternTable.Editor.
int grammarscope.common.model.TextCellEditor.getClickCountToStart | ( | ) |
Returns the number of clicks needed to start editing.
Component grammarscope.common.model.TextCellEditor.getComponent | ( | ) |
Returns a reference to the editor component.
Component
Component grammarscope.common.model.TextCellEditor.getTableCellEditorComponent | ( | final JTable | table, |
final Object | value, | ||
final boolean | isSelected, | ||
final int | row, | ||
final int | column | ||
) |
Implements the TableCellEditor
interface.
Reimplemented in grammarscope.editor.component.TregexPatternTable.Editor.
Component grammarscope.common.model.TextCellEditor.getTreeCellEditorComponent | ( | final JTree | tree, |
final Object | value, | ||
final boolean | isSelected, | ||
final boolean | expanded, | ||
final boolean | leaf, | ||
final int | row | ||
) |
Implements the TreeCellEditor
interface.
boolean grammarscope.common.model.TextCellEditor.isCellEditable | ( | final EventObject | anEvent | ) |
Forwards the message from the CellEditor
to the delegate
.
Reimplemented in grammarscope.editor.component.TregexPatternTable.Editor.
void grammarscope.common.model.TextCellEditor.setClickCountToStart | ( | final int | count | ) |
Specifies the number of clicks needed to start editing.
count | an int specifying the number of clicks needed to start editing |
boolean grammarscope.common.model.TextCellEditor.shouldSelectCell | ( | final EventObject | anEvent | ) |
Forwards the message from the CellEditor
to the delegate
.
Reimplemented in grammarscope.editor.component.TregexPatternTable.Editor.
boolean grammarscope.common.model.TextCellEditor.stopCellEditing | ( | ) |
Forwards the message from the CellEditor
to the delegate
.
Reimplemented in grammarscope.editor.component.TregexPatternTable.Editor.
|
protected |
An integer specifying the number of clicks needed to start editing. Even if clickCountToStart
is defined as zero, it will not initiate until a click occurs.
|
protected |
The delegate class which handles all methods sent from the CellEditor
.
|
protected |
The Swing component being edited.
|
staticprivate |