public boolean editCellAt(int row, int col , EventObject e){
boolean result = super.editCellAt(row, col, e);
Component c = this.getEditorComponent();
if (c instanceof JTextField){
JTextField t = (JTextField) c;
t.selectAll();
}
if (c != null)
c.requestFocus();