/**
  * abort any edit in progress
  */
private void stopEdit()
   {
   // stop any edit in process
   TableCellEditor tce = jTable.getCellEditor();
   if ( tce != null )
      {
      tce.stopCellEditing();
      }
   }