dyntable
Class ExtendedCellEditor

java.lang.Object
  |
  +--javax.swing.AbstractCellEditor
        |
        +--javax.swing.DefaultCellEditor
              |
              +--dyntable.ExtendedCellEditor
All Implemented Interfaces:
javax.swing.CellEditor, java.io.Serializable, javax.swing.table.TableCellEditor, javax.swing.tree.TreeCellEditor

public class ExtendedCellEditor
extends javax.swing.DefaultCellEditor

$Id: ExtendedCellEditor,v 1.0 2005/09/25 jDynTable@gmx.de $
This class is an extension to DefaultCellEditor and is nearly identical to it. The only added method is the constructor accepting JTableTextAreas. This constructor is needed if we want to use TextAreas as CellEditors.

Version:
$Revision: 1.0 $
Author:
$Author: jdyntable@gmx.de $
See Also:
Serialized Form

Constructor Summary
ExtendedCellEditor(javax.swing.JCheckBox checkBox)
          Original constructor is being called from here
ExtendedCellEditor(javax.swing.JComboBox comboBox)
          Original constructor is being called from here
ExtendedCellEditor(JTableTextArea textArea)
          This constructor behaves very similar to ExtendedCellEditor(final JTextField textField).
ExtendedCellEditor(javax.swing.JTextField textField)
          Original constructor is being called from here
 
Method Summary
 javax.swing.JComponent getEditorComponent()
          Getter Methode für die editorComponent
 
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 Detail

ExtendedCellEditor

public ExtendedCellEditor(javax.swing.JCheckBox checkBox)
Original constructor is being called from here

See Also:
DefaultCellEditor.DefaultCellEditor(JCheckBox checkBox)

ExtendedCellEditor

public ExtendedCellEditor(javax.swing.JComboBox comboBox)
Original constructor is being called from here

See Also:
DefaultCellEditor.DefaultCellEditor(JComboBox comboBox)

ExtendedCellEditor

public ExtendedCellEditor(javax.swing.JTextField textField)
Original constructor is being called from here

See Also:
DefaultCellEditor.DefaultCellEditor(JTextField textField)

ExtendedCellEditor

public ExtendedCellEditor(JTableTextArea textArea)
This constructor behaves very similar to ExtendedCellEditor(final JTextField textField). It constructs a DefaultCellEditor that uses a text area.

Parameters:
textArea - - a textArea object
Method Detail

getEditorComponent

public javax.swing.JComponent getEditorComponent()
Getter Methode für die editorComponent

Returns:
the editor component object