Uses of Class
de.kupzog.ktable.KTableCellEditor

Packages that use KTableCellEditor
de.kupzog.examples   
de.kupzog.ktable   
de.kupzog.ktable.editors   
 

Uses of KTableCellEditor in de.kupzog.examples
 

Methods in de.kupzog.examples that return KTableCellEditor
 KTableCellEditor TextModelExample.doGetCellEditor(int col, int row)
           
 KTableCellEditor SpanModelExample.doGetCellEditor(int col, int row)
           
 KTableCellEditor SortableModelExample.doGetCellEditor(int col, int row)
           
 KTableCellEditor BooleanModelExample.doGetCellEditor(int col, int row)
           
 KTableCellEditor TownExampleModel.getCellEditor(int col, int row)
           
 KTableCellEditor PaletteExampleModel.getCellEditor(int col, int row)
           
 

Uses of KTableCellEditor in de.kupzog.ktable
 

Methods in de.kupzog.ktable that return KTableCellEditor
abstract  KTableCellEditor KTableDefaultModel.doGetCellEditor(int col, int row)
          Returns the celleditor for the given table cell.
 KTableCellEditor KTableSortedModel.getCellEditor(int col, int row)
          Maps between the KTable row index and the model row index!
 KTableCellEditor KTableModel.getCellEditor(int col, int row)
          A table cell will be "in place editable" if this method returns a valid cell editor for the given cell.
 KTableCellEditor KTableDefaultModel.getCellEditor(int col, int row)
          Delegates the real editor retrieval to the method doGetCellEditor(int, int).
 

Uses of KTableCellEditor in de.kupzog.ktable.editors
 

Subclasses of KTableCellEditor in de.kupzog.ktable.editors
 class KTableCellEditorCheckbox
          A cell editor that expects a Boolean cell value and simply switches this value.
 class KTableCellEditorCheckbox2
          This class is an implementation of KTableCellEditorCheckbox that simply inverts a boolean cell value.
 class KTableCellEditorCombo
          A combobox cell editor.
 class KTableCellEditorComboText
          A cell editor with a combo (not read only)
 class KTableCellEditorMultilineText
           
 class KTableCellEditorMultilineWrapText
           
 class KTableCellEditorText
          A simple cell editor that simply creates a text widget that allows the user to type in one line of text.
 class KTableCellEditorText2
          A simple cell editor that simply creates a text widget that allows the user to type in one line of text.
 class TableCellEditorDialog
          An abstract base implementation for a cell editor that opens a dialog.