Lines Matching defs:to

8  * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * uses a <code>Vector</code> of <code>Vectors</code> to store the
45 * <code>TableRowSorter</code> you are strongly encouraged to override
46 * <code>getColumnClass</code> to return the appropriate type.
54 * has been added to the <code>java.beans</code> package.
148 * to the <code>setDataVector</code> method.
165 * to the <code>setDataVector</code>
182 * each a single row of values. In other words, to get to the cell
208 * mapped to column 0 in <code>dataVector</code>. Each row in
209 * <code>dataVector</code> is adjusted to match the number of
244 * Equivalent to <code>fireTableChanged</code>.
257 private void justifyRows(int from, int to) {
264 for (int i = from; i < to; i++) {
279 * notification message to all the listeners.
293 * Equivalent to <code>fireTableChanged</code>.
307 * than the current size, new rows are added to the end of the model
331 * than the current size, new rows are added to the end of the model
343 * Adds a row to the end of the model. The new row will contain
354 * Adds a row to the end of the model. The new row will contain
369 * @param row the row index of the row to be inserted
384 * @param row the row index of the row to be inserted
401 int to = i;
402 Object tmp = v.elementAt(a + to);
403 for(int from = (to + r) % size; from != i; from = (to + r) % size) {
404 v.setElementAt(v.elementAt(a + from), a + to);
405 to = from;
407 v.setElementAt(tmp, a + to);
412 * Moves one or more rows from the inclusive range <code>start</code> to
413 * <code>end</code> to the <code>to</code> position in the model.
415 * will be at index <code>to</code>.
417 * message to all the listeners. <p>
432 * @param start the starting row index to be moved
433 * @param end the ending row index to be moved
434 * @param to the destination of the rows to be moved
439 public void moveRow(int start, int end, int to) {
440 int shift = to - start;
443 first = to;
448 last = to + end - start;
457 * of the row being removed will be sent to all the listeners.
459 * @param row the row index of the row to be removed
474 * of columns, new columns are added to the end of each row in the model.
481 * to zero columns
491 * of columns, new columns are added to the end of each row in the model.
498 * the model to zero columns
507 * than the current size, new columns are added to the end of the model
524 * Adds a column to the model. The new column will have the
527 * <code>tableChanged</code> notification message to all the listeners.
538 * Adds a column to the model. The new column will have the
543 * the new data will be added to model starting with the first
544 * element going to row 0, etc. This method will send a
545 * <code>tableChanged</code> notification message to all the listeners.
572 * Adds a column to the model. The new column will have the
576 * the new data will be added to model starting with the first
577 * element going to row 0, etc. This method will send a
578 * <code>tableChanged</code> notification message to all the listeners.
617 // This test is to cover the case when
629 * @param row the row whose value is to be queried
630 * @param column the column whose value is to be queried
642 * @param row the row whose value is to be queried
643 * @param column the column whose value is to be queried
659 * @param row the row whose value is to be changed
660 * @param column the column whose value is to be changed
676 * @param anArray the array to be converted
693 * @param anArray the double array to be converted