Example #1
0
 public Object getValueAt(int row, int col) {
   Object loValor = null;
   try {
     if (mlUltimaFilaCargada != row) {
       mlUltimaFilaCargada = row;
       moCampos.cargar((IFilaDatos) moLista.get(row));
     }
     loValor = moCampos.get(col).getValue();
   } catch (Exception e) {
     JDepuracion.anadirTexto(this.getClass().getName(), e);
     loValor = null;
   }
   return loValor;
 }
Example #2
0
 public int getRowCount() {
   return moLista.size();
 }