Exemplo n.º 1
0
 /**
  * This method activated the cell editor on the current focus cell, if the table model allows cell
  * editing for this cell.
  */
 public void openEditorInFocus() {
   m_CellEditor = m_Model.getCellEditor(m_FocusCol, m_FocusRow);
   if (m_CellEditor != null) {
     Rectangle r = getCellRect(m_FocusCol, m_FocusRow);
     m_CellEditor.open(this, m_FocusCol, m_FocusRow, r);
   }
 }