Example #1
0
 @Override
 public Object getValueAt(int rowIndex, int columnIndex) {
   Taxi item = lista.getObject(rowIndex);
   Flota f = central.buscarFlotaTaxi(item.getPatente());
   ListaContadora<Paradero> nParaderos = new ListaContadora<>();
   f.listarParaderos(nParaderos);
   Object[] aux = {
     (item.getTaxista() == null) ? "S/T" : item.getTaxista().getNombre(),
     item.getPatente(),
     item.getMarca(),
     item.getModelo(),
     nParaderos.tamaño(),
     item.getNPasajeros()
   };
   return aux[columnIndex];
 }
Example #2
0
 @Override
 public int getRowCount() {
   return lista.tamaño();
 }