Class DefaultTextCellEditor
java.lang.Object
javax.swing.AbstractCellEditor
org.bidib.wizard.mvc.common.view.table.DefaultTextCellEditor
- All Implemented Interfaces:
Serializable,CellEditor,TableCellEditor
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classThe protectedEditorDelegateclass. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intAn integer specifying the number of clicks needed to start editing.static final com.jidesoft.grid.EditorContextprotected DefaultTextCellEditor.EditorDelegateThe delegate class which handles all methods sent from theCellEditor.protected JComponentThe Swing component being edited.Fields inherited from class javax.swing.AbstractCellEditor
changeEvent, listenerList -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidForwards the message from theCellEditorto thedelegate.Forwards the message from theCellEditorto thedelegate.intReturns the number of clicks needed to start editing.Returns a reference to the editor component.getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) Implements theTableCellEditorinterface.getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) Implements theTreeCellEditorinterface.booleanisCellEditable(EventObject anEvent) Forwards the message from theCellEditorto thedelegate.voidsetClickCountToStart(int count) Specifies the number of clicks needed to start editing.booleanshouldSelectCell(EventObject anEvent) Forwards the message from theCellEditorto thedelegate.booleanForwards the message from theCellEditorto thedelegate.Methods inherited from class javax.swing.AbstractCellEditor
addCellEditorListener, fireEditingCanceled, fireEditingStopped, getCellEditorListeners, removeCellEditorListenerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface javax.swing.CellEditor
addCellEditorListener, removeCellEditorListener
-
Field Details
-
CONTEXT
public static final com.jidesoft.grid.EditorContext CONTEXT -
editorComponent
The Swing component being edited. -
delegate
The delegate class which handles all methods sent from theCellEditor. -
clickCountToStart
protected int clickCountToStartAn integer specifying the number of clicks needed to start editing. Even ifclickCountToStartis defined as zero, it will not initiate until a click occurs.
-
-
Constructor Details
-
DefaultTextCellEditor
-
-
Method Details
-
getComponent
Returns a reference to the editor component.- Returns:
- the editor
Component
-
setClickCountToStart
public void setClickCountToStart(int count) Specifies the number of clicks needed to start editing.- Parameters:
count- an int specifying the number of clicks needed to start editing- See Also:
-
getClickCountToStart
public int getClickCountToStart()Returns the number of clicks needed to start editing.- Returns:
- the number of clicks needed to start editing
-
getCellEditorValue
Forwards the message from theCellEditorto thedelegate.- Specified by:
getCellEditorValuein interfaceCellEditor- See Also:
-
isCellEditable
Forwards the message from theCellEditorto thedelegate.- Specified by:
isCellEditablein interfaceCellEditor- Overrides:
isCellEditablein classAbstractCellEditor- See Also:
-
shouldSelectCell
Forwards the message from theCellEditorto thedelegate.- Specified by:
shouldSelectCellin interfaceCellEditor- Overrides:
shouldSelectCellin classAbstractCellEditor- See Also:
-
stopCellEditing
public boolean stopCellEditing()Forwards the message from theCellEditorto thedelegate.- Specified by:
stopCellEditingin interfaceCellEditor- Overrides:
stopCellEditingin classAbstractCellEditor- See Also:
-
cancelCellEditing
public void cancelCellEditing()Forwards the message from theCellEditorto thedelegate.- Specified by:
cancelCellEditingin interfaceCellEditor- Overrides:
cancelCellEditingin classAbstractCellEditor- See Also:
-
getTreeCellEditorComponent
public Component getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row) Implements theTreeCellEditorinterface. -
getTableCellEditorComponent
public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) Implements theTableCellEditorinterface.- Specified by:
getTableCellEditorComponentin interfaceTableCellEditor
-