Searched defs:rowCount (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableModel.java97 * <code>rowCount</code> and <code>columnCount</code> of
100 * @param rowCount the number of rows the table holds
105 public DefaultTableModel(int rowCount, int columnCount) { argument
106 this(newVector(columnCount), rowCount);
112 * and <code>rowCount</code> of <code>null</code>
119 * @param rowCount the number of rows the table holds
123 public DefaultTableModel(Vector columnNames, int rowCount) { argument
124 setDataVector(newVector(rowCount), columnNames);
130 * and <code>rowCount</code> of <code>null</code>
137 * @param rowCount th
141 DefaultTableModel(Object[] columnNames, int rowCount) argument
314 setNumRows(int rowCount) argument
338 setRowCount(int rowCount) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11PMBlitLoops.c221 int rowCount; local
282 rowCount = height;
309 } while (--rowCount > 0);
328 } while (--rowCount > 0);
361 } while (--rowCount > 0);
383 } while (--rowCount > 0);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultRowSorter.java633 int rowCount = getModelWrapper().getRowCount();
638 createModelToView(rowCount);
639 for (i = 0; i < rowCount; i++) {
650 createViewToModel(rowCount - excludedCount);
651 for (i = 0, j = 0; i < rowCount; i++) {
659 * Makes sure the modelToView array is of size rowCount.
661 private void createModelToView(int rowCount) { argument
662 if (modelToView == null || modelToView.length != rowCount) {
663 modelToView = new int[rowCount];
668 * Resets the viewToModel array to be of size rowCount
670 createViewToModel(int rowCount) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java56 private int rowCount; field in class:FixedHeightLayoutCache
108 rowCount++;
112 rowCount--;
139 return rowCount;
573 rowCount += changeAmount;
610 rowCount = 1;
614 rowCount = 0;
621 rowCount = 0;
1117 rowCount = lastRow;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java1680 int rowCount = ((TableElementInfo)elementInfo).getRowCount();
1682 int r = i / rowCount;
1684 if (r < 0 || r >= rowCount || c < 0 || c >= columnCount) {
2139 private int rowCount = 0; field in class:AccessibleHTML.TableElementInfo.TableAccessibleContext.AccessibleHeadersTable
2192 return rowCount;
2440 int rowCount = 1;
2449 rowCount = Math.max(rowCount, cell.getRowCount());
2453 return rowCount;
2513 for (int rowCount
[all...]

Completed in 56 milliseconds