Searched refs:numRows (Results 1 - 8 of 8) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/ |
H A D | SmartGridLayout.java | 51 public SmartGridLayout(int numColumns, int numRows) { argument 52 rows = numRows; 54 layoutGrid = new Component[numColumns][numRows];
|
/openjdk7/jdk/src/share/classes/javax/sql/rowset/ |
H A D | CachedRowSet.java | 1536 * object has populated a number of additional rows. The <code>numRows</code> parameter 1543 * @param numRows when populating, the number of rows interval on which the 1547 public void rowSetPopulated(RowSetEvent event, int numRows) throws SQLException; argument
|
/openjdk7/jdk/src/share/classes/com/sun/rowset/ |
H A D | CachedRowSetImpl.java | 152 private int numRows; field in class:CachedRowSetImpl 328 * numRows = 0 342 * numRows = 0 394 * numRows = 0 408 * numRows = 0 483 * <code>cursorPos</code> and <code>numRows</code> fields to zero. 490 numRows = 0; 694 numRows = rowsFetched ; 964 --numRows; 1049 --numRows; 7194 rowSetPopulated(RowSetEvent event, int numRows) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/ |
H A D | TableSorter.java | 57 public TableSorter(Object[] columnNames, int numRows) { argument 58 super(columnNames,numRows);
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | JTree.java | 1715 int numRows = rows.length; 1716 TreePath[] paths = new TreePath[numRows]; 1718 for(int counter = 0; counter < numRows; counter++) { 1780 int numRows = rows.length; 1781 TreePath[] paths = new TreePath[numRows]; 1783 for(int counter = 0; counter < numRows; counter++) 2646 int numRows = rows.length; 2647 TreePath[] paths = new TreePath[numRows]; 2649 for(int counter = 0; counter < numRows; counter++)
|
H A D | JTable.java | 640 * Constructs a <code>JTable</code> with <code>numRows</code> 645 * @param numRows the number of rows the table holds 649 public JTable(int numRows, int numColumns) { argument 650 this(new DefaultTableModel(numRows, numColumns)); 7751 int numRows = getAccessibleRowCount(); 7752 rowDescription = new Accessible[numRows];
|
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/ |
H A D | RuleBasedBreakIteratorBuilder.java | 1850 int numRows = stateTable.length / numCategories; 1852 for (int row = 0; row < numRows; row++) { 2101 /* Write stateTable[numCategories * numRows] */ 2107 /* Write backwardsStateTable[numCategories * numRows] */ 2113 /* Write endStates[numRows] */ 2116 /* Write lookaheadStates[numRows] */
|
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/ |
H A D | SyncResolverImpl.java | 4701 * object has populated a number of additional rows. The <code>numRows</code> parameter 4708 * @param numRows when populating, the number of rows interval on which the 4712 public void rowSetPopulated(RowSetEvent event, int numRows) throws SQLException { argument
|
Completed in 680 milliseconds