コード例 #1
0
ファイル: ModelCuentas.java プロジェクト: magmax/master-java
 public int getRowCount() {
   try {
     return dao.findAll().size();
   } catch (SQLException e) {
     e.printStackTrace();
   }
   return 0;
 }
コード例 #2
0
ファイル: ModelCuentas.java プロジェクト: magmax/master-java
 public void addRow(Cuenta cuenta) {
   try {
     dao.create(cuenta);
     fireTableDataChanged();
   } catch (SQLException e) {
     e.printStackTrace();
     JOptionPane.showMessageDialog(
         null, e.getMessage(), "Error insertando objeto", JOptionPane.ERROR_MESSAGE);
   }
 }
コード例 #3
0
ファイル: ModelCuentas.java プロジェクト: magmax/master-java
 public Object getValueAt(int row, int col) {
   // Sí, es altamente ineficiente, pero lo estoy haciendo para practicar...
   List<Cuenta> list;
   try {
     list = dao.findAll();
   } catch (SQLException e) {
     e.printStackTrace();
     list = new ArrayList<Cuenta>();
   }
   if (row >= list.size() || col >= headers.length) return null;
   Cuenta cuenta = list.get(row);
   switch (col) {
     case 0:
       return cuenta.getCodigo();
     case 1:
       return cuenta.getCliente();
     case 2:
       return cuenta.getEmail();
     case 3:
       return cuenta.getSaldo();
   }
   return null;
 }
コード例 #4
0
ファイル: ModelCuentas.java プロジェクト: magmax/master-java
 public void update(Cuenta cuenta) throws SQLException {
   dao.update(cuenta);
   this.fireTableDataChanged();
 }
コード例 #5
0
ファイル: ModelCuentas.java プロジェクト: magmax/master-java
 public void deleteRow(int row) throws SQLException {
   dao.delete(dao.read((String) this.getValueAt(row, 0)));
   this.fireTableRowsDeleted(row, row);
 }
コード例 #6
0
ファイル: ModelCuentas.java プロジェクト: magmax/master-java
 public Cuenta getRow(int row) throws SQLException {
   return dao.read((String) this.getValueAt(row, 0));
 }