コード例 #1
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public void delCol(int col) throws RemoteException {
   df.delCol(col);
   fireTableStructureChanged();
 }
コード例 #2
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public void addCol(RLegalName name, RVectorFactor v) throws RemoteException {
   df.addCol(name, v);
   fireTableStructureChanged();
 }
コード例 #3
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public void delRow(int row) throws RemoteException {
   df.delRow(row);
   fireTableRowsDeleted(row, row);
 }
コード例 #4
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public void addRow(int row, RLegalName name) throws RemoteException {
   df.addRow(row, name);
   fireTableRowsInserted(row, row);
 }
コード例 #5
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public void addCol(int col, RLegalName name, RFactor v) throws RemoteException {
   df.addCol(col, name, v);
   fireTableStructureChanged();
 }
コード例 #6
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public void addRow(int row) throws RemoteException {
   df.addRow(row);
   fireTableRowsInserted(row, row);
 }
コード例 #7
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public CellValue getValueAt(int row, int col) {
   return new CellValue(df.get(row, col), df.getCol(col));
 }
コード例 #8
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public String getColumnName(int col) {
   return df.getColName(col);
 }
コード例 #9
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public int getRowCount() {
   return df.getRowCount();
 }
コード例 #10
0
ファイル: DataTableModel.java プロジェクト: kornl/mutoss
 public int getColumnCount() {
   return df.getColumnCount();
 }