Class DatePickerCellEditor
java.lang.Object
javax.swing.AbstractCellEditor
javax.swing.DefaultCellEditor
com.michaelbaranov.microba.calendar.DatePickerCellEditor
- All Implemented Interfaces:
Serializable
,CellEditor
,TableCellEditor
,TreeCellEditor
This class in a concrete implementation of
TableCellEditor
and
TreeCellEditor
interfaces. Uses DatePicker
control as en
editor. Subclass to extend functionality. *
Note: you probably will want to set the property of the DatePicker
"dropdownFocusable" to false
before using it to construct DatePickerCellEditor
.
- Author:
- Michael Baranov
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class javax.swing.DefaultCellEditor
cancelCellEditing, getCellEditorValue, getClickCountToStart, getComponent, getTableCellEditorComponent, getTreeCellEditorComponent, isCellEditable, setClickCountToStart, shouldSelectCell, stopCellEditing
Methods inherited from class javax.swing.AbstractCellEditor
addCellEditorListener, getCellEditorListeners, removeCellEditorListener
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface javax.swing.CellEditor
addCellEditorListener, removeCellEditorListener
-
Constructor Details
-
DatePickerCellEditor
Constructor.Note: you probably will want to set the property of the
DatePicker
"dropdownFocusable" tofalse
before using it to constructDatePickerCellEditor
.- Parameters:
datePicker
- the editor component
-