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