Searched defs:numRows (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DSmartGridLayout.java51 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 DCachedRowSet.java1536 * 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/sun/tools/jconsole/inspector/
H A DTableSorter.java57 public TableSorter(Object[] columnNames, int numRows) { argument
58 super(columnNames,numRows);
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java4701 * 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
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java152 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/javax/swing/
H A DJTable.java640 * 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];

Completed in 84 milliseconds