Exemplo n.º 1
0
 /**
  * Increases the row by the specified rows.
  *
  * @param rows number of rows to move
  */
 public final void nextRow(int rows) {
   currentCellConstraints.gridY += rows;
 }
Exemplo n.º 2
0
 /**
  * Sets the cursor to the given row.
  *
  * @param row the cursor's new row index
  */
 public final void setRow(int row) {
   currentCellConstraints.gridY = row;
 }