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

/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSetMetaData.java53 * @param columnCount the number of columns in the <code>RowSet</code> object
56 void setColumnCount(int columnCount) throws SQLException; argument
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableModel.java97 * <code>rowCount</code> and <code>columnCount</code> of
101 * @param columnCount the number of columns the table holds
105 public DefaultTableModel(int rowCount, int columnCount) { argument
106 this(newVector(columnCount), rowCount);
510 * <code>columnCount</code> and greater are discarded.
512 * @param columnCount the new number of columns in the model
517 public void setColumnCount(int columnCount) { argument
518 columnIdentifiers.setSize(columnCount);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java119 * @param columnCount an <code>int</code> giving the number of columns in the
123 public void setColumnCount(int columnCount) throws SQLException { argument
125 if (columnCount <= 0) {
130 colCount = columnCount;
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java87 private int columnCount; field in class:Parser
495 ColumnFormat cf = new ColumnFormat(columnCount++);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java99 private int columnCount; field in class:BasicListUI
295 columnCount : 1;
586 int width = cellWidth * columnCount + insets.left + insets.right;
876 columnCount = 1;
1091 if (column < 0 || column > columnCount || row < 0) {
1187 if (column < 0 || column >= columnCount) {
1191 (column == 0 && columnCount == 1)) {
1194 if (column >= columnCount) {
1198 if (column < (columnCount - 1)) {
1201 return list.getModel().getSize() - (columnCount
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java1681 int columnCount = ((TableElementInfo)elementInfo).getColumnCount();
1683 int c = i % columnCount;
1684 if (r < 0 || r >= rowCount || c < 0 || c >= columnCount) {
2140 private int columnCount = 0; field in class:AccessibleHTML.TableElementInfo.TableAccessibleContext.AccessibleHeadersTable
2201 return columnCount;

Completed in 49 milliseconds