Beispiel #1
0
 public void deleteRow(int row) throws SQLException {
   dao.delete(dao.read((String) this.getValueAt(row, 0)));
   this.fireTableRowsDeleted(row, row);
 }
Beispiel #2
0
 public Cuenta getRow(int row) throws SQLException {
   return dao.read((String) this.getValueAt(row, 0));
 }