コード例 #1
0
ファイル: CellRange.java プロジェクト: judithgull/scout.rt
 public CellRange(int row1, int col1, int row2, int col2) {
   rangeCheck(row1, col1);
   rangeCheck(row2, col2);
   m_row1 = row1;
   m_col1 = col1;
   m_row2 = row2;
   m_col2 = col2;
   rangeOrder();
 }
コード例 #2
0
ファイル: CellRange.java プロジェクト: judithgull/scout.rt
 public CellRange(int row, int col) {
   rangeCheck(row, col);
   m_row1 = row;
   m_col1 = col;
   m_row2 = row;
   m_col2 = col;
 }