コード例 #1
0
ファイル: FlexTable.java プロジェクト: psloboda/acris
 /**
  * Removes the specified cell from the table.
  *
  * @param row the row of the cell to remove
  * @param column the column of cell to remove
  * @throws IndexOutOfBoundsException
  */
 @Override
 public void removeCell(int row, int column) {
   super.removeCell(row, column);
 }