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, stopCellEditingMethods inherited from class javax.swing.AbstractCellEditor
addCellEditorListener, getCellEditorListeners, removeCellEditorListenerMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods 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" tofalsebefore using it to constructDatePickerCellEditor.- Parameters:
datePicker- the editor component
-