Exemplo n.º 1
0
 public void delCol(int col) throws RemoteException {
   df.delCol(col);
   fireTableStructureChanged();
 }
Exemplo n.º 2
0
 public void addCol(RLegalName name, RVectorFactor v) throws RemoteException {
   df.addCol(name, v);
   fireTableStructureChanged();
 }
Exemplo n.º 3
0
 public void delRow(int row) throws RemoteException {
   df.delRow(row);
   fireTableRowsDeleted(row, row);
 }
Exemplo n.º 4
0
 public void addRow(int row, RLegalName name) throws RemoteException {
   df.addRow(row, name);
   fireTableRowsInserted(row, row);
 }
Exemplo n.º 5
0
 public void addCol(int col, RLegalName name, RFactor v) throws RemoteException {
   df.addCol(col, name, v);
   fireTableStructureChanged();
 }
Exemplo n.º 6
0
 public void addRow(int row) throws RemoteException {
   df.addRow(row);
   fireTableRowsInserted(row, row);
 }
Exemplo n.º 7
0
 public CellValue getValueAt(int row, int col) {
   return new CellValue(df.get(row, col), df.getCol(col));
 }
Exemplo n.º 8
0
 public String getColumnName(int col) {
   return df.getColName(col);
 }
Exemplo n.º 9
0
 public int getRowCount() {
   return df.getRowCount();
 }
Exemplo n.º 10
0
 public int getColumnCount() {
   return df.getColumnCount();
 }