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; }
public int getRowCount() { return moLista.size(); }