Searched refs:colCount (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java59 private int colCount; field in class:RowSetMetaDataImpl
82 if (col <= 0 || col > colCount) {
130 colCount = columnCount;
132 // If the colCount is Integer.MAX_VALUE,
134 // even if we try to initialize the colCount with
135 // colCount = Integer.MAx_VALUE-1, the colInfo
140 if(!(colCount == Integer.MAX_VALUE)) {
141 colInfo = new ColInfo[colCount + 1];
143 for (int i=1; i <= colCount; i++) {
491 return colCount;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTablePrintable.java501 int colCount = table.getColumnCount();
509 if (++col >= colCount) {
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java2461 int colCount = 0;
2469 colCount += cell.getColumnCount();
2473 return colCount;
2515 for (int colCount = cell.getColumnCount() - 1;
2516 colCount >= 0; colCount--) {
2517 grid[row + rowCount][col + colCount] = cell;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java416 int colCount = table.getColumnCount();
417 this.dx = forwards ? colCount : -colCount;
2170 int colCount = table.getColumnCount();
2172 cols = new int[colCount];
2173 for (int counter = 0; counter < colCount; counter++) {
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java6293 int colCount = RowSetMD.getColumnCount();
6297 orig = new Row(colCount, ((Row)i.next()).getOrigRow());

Completed in 90 milliseconds