Lines Matching refs:rows

248      * Number of rows to make visible at one time. This value is used for
1694 int[] rows = { row };
1696 setSelectionRows(rows);
1700 * Selects the nodes corresponding to each of the specified rows
1701 * in the display. If a particular element of <code>rows</code> is
1704 * in <code>rows</code> are valid rows, the selection will
1708 * @param rows an array of ints specifying the rows to select,
1711 public void setSelectionRows(int[] rows) {
1714 if(ui != null && rows != null) {
1715 int numRows = rows.length;
1719 paths[counter] = ui.getPathForRow(this, rows[counter]);
1765 int[] rows = { row };
1767 addSelectionRows(rows);
1771 * Adds the paths at each of the specified rows to the current selection.
1773 * @param rows an array of ints specifying the rows to add,
1776 public void addSelectionRows(int[] rows) {
1779 if(ui != null && rows != null) {
1780 int numRows = rows.length;
1784 paths[counter] = ui.getPathForRow(this, rows[counter]);
1847 * Returns all of the currently selected rows. This method is simply
1853 * @return an array of integers that identifies all currently selected rows
2472 * Returns the paths (inclusive) between the specified rows. If
2473 * the specified indices are within the viewable set of rows, or
2474 * bound the viewable set of rows, then the indices are
2475 * constrained by the viewable set of rows. If the specified
2476 * indices are not within the viewable set of rows, or do not
2477 * bound the viewable set of rows, then an empty array is
2480 * indices are constrained to the viewable set of rows, and this is
2483 * indices do not bound the viewable set of rows, and an empty
2491 * the specified indices do not bound the viewable set of rows.
2520 * Selects the rows in the specified interval (inclusive). If
2521 * the specified indices are within the viewable set of rows, or bound
2522 * the viewable set of rows, then the specified rows are constrained by
2523 * the viewable set of rows. If the specified indices are not within the
2524 * viewable set of rows, or do not bound the viewable set of rows, then
2530 * bound the viewable set of rows, and the selection is cleared.
2546 * Adds the specified rows (inclusive) to the selection. If the
2547 * specified indices are within the viewable set of rows, or bound
2548 * the viewable set of rows, then the specified indices are
2549 * constrained by the viewable set of rows. If the indices are not
2550 * within the viewable set of rows, or do not bound the viewable
2551 * set of rows, then the selection is unchanged. For example, if
2556 * the specified indices do not bound the viewable set of rows,
2575 * Removes the specified rows (inclusive) from the selection. If
2576 * the specified indices are within the viewable set of rows, or bound
2577 * the viewable set of rows, then the specified indices are constrained by
2578 * the viewable set of rows. If the specified indices are not within the
2579 * viewable set of rows, or do not bound the viewable set of rows, then
2585 * bound the viewable set of rows, and the selection is unchanged.
2630 int[] rows = { row };
2632 removeSelectionRows(rows);
2636 * Removes the rows that are selected at each of the specified
2637 * rows.
2639 * @param rows an array of ints specifying display rows, where 0 is
2642 public void removeSelectionRows(int[] rows) {
2645 if(ui != null && rows != null) {
2646 int numRows = rows.length;
2650 paths[counter] = ui.getPathForRow(this, rows[counter]);
2937 * Sets the number of rows that are to be displayed.
2944 * @param newCount the number of rows to display
2947 * description: The number of rows that are to be displayed.
2962 * Returns the number of rows that are displayed in the display area.
2964 * @return the number of rows displayed