Searched refs:getColumnCount (Results 1 - 25 of 54) sorted by relevance

123

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DTreeTableModel.java45 public int getColumnCount(); method in interface:TreeTableModel
H A DSimpleTreeTableModel.java42 public int getColumnCount() { method in class:SimpleTreeTableModel
H A DTreeTableModelAdapter.java91 public int getColumnCount() { method in class:TreeTableModelAdapter
92 return treeTableModel.getColumnCount();
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableModel.java59 * @see #getColumnCount
71 public int getColumnCount(); method in interface:TableModel
H A DTableColumnModel.java106 public int getColumnCount(); method in interface:TableColumnModel
H A DDefaultTableColumnModel.java126 getColumnCount() - 1));
177 if ((columnIndex < 0) || (columnIndex >= getColumnCount()) ||
178 (newIndex < 0) || (newIndex >= getColumnCount()))
239 public int getColumnCount() { method in class:DefaultTableColumnModel
334 int cc = getColumnCount();
H A DTableRowSorter.java260 public int getColumnCount() { method in class:TableRowSorter.TableRowSorterModelWrapper
261 return (tableModel == null) ? 0 : tableModel.getColumnCount();
H A DAbstractTableModel.java44 * public int getColumnCount();
100 for (int i = 0; i < getColumnCount(); i++) {
H A DDefaultTableModel.java268 ((Vector)dataVector.elementAt(i)).setSize(getColumnCount());
558 int newColumn = getColumnCount() - 1;
602 public int getColumnCount() { method in class:DefaultTableModel
618 // getColumnCount has been subclassed by mistake ...
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/
H A DTableModelComparator.java46 columns = new int[model.getColumnCount()];
55 int[] tempArray = new int[model.getColumnCount()];
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableMap.java87 public int getColumnCount() { method in class:TableMap
88 return (model == null) ? 0 : model.getColumnCount();
H A DJDBCAdapter.java95 int numberOfColumns = metaData.getColumnCount();
107 for (int i = 1; i <= getColumnCount(); i++) {
196 public int getColumnCount() { method in class:JDBCAdapter
253 for (int col = 0; col < getColumnCount(); col++) {
H A DTableExample3.java104 public int getColumnCount() {
/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSetMetaData.java39 * int numberOfColumns = rsmd.getColumnCount();
53 int getColumnCount() throws SQLException; method in interface:ResultSetMetaData
/openjdk7/jdk/test/javax/swing/JTable/6777378/
H A Dbug6777378.java61 public int getColumnCount() {
/openjdk7/jdk/test/javax/swing/JTable/
H A DTest6888156.java59 @Override public int getColumnCount() {
/openjdk7/jdk/test/javax/swing/JTable/7068740/
H A Dbug7068740.java58 public int getColumnCount() {
/openjdk7/jdk/test/javax/swing/JTableHeader/6884066/
H A Dbug6884066.java76 checkColumn(model.getColumnCount() - 1, "A");
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultRowSorter.java263 isSortable = new boolean[getModelWrapper().getColumnCount()];
301 int max = getModelWrapper().getColumnCount();
619 int i = getModelWrapper().getColumnCount();
763 comparators = new Comparator[getModelWrapper().getColumnCount()];
1218 if (column < 0 || column >= getModelWrapper().getColumnCount()) {
1267 public abstract int getColumnCount(); method in class:DefaultRowSorter.ModelWrapper
1344 return getModelWrapper().getColumnCount();
H A DJTable.java78 * public int getColumnCount() { return 10; }
688 public int getColumnCount() { return columnNames.length; }
1268 * the data model using the <code>getColumnCount</code> method
1281 while (cm.getColumnCount() > 0) {
1286 for (int i = 0; i < m.getColumnCount(); i++) {
1625 location = new DropLocation(p, getColumnCount(), col, false, true);
1642 location = new DropLocation(p, row, getColumnCount(), false, true);
2081 if (getRowCount() > 0 && getColumnCount() > 0) {
2103 setColumnSelectionInterval(0, getColumnCount()-1);
2136 int compare = row ? getRowCount() : getColumnCount();
2672 public int getColumnCount() { method in class:JTable
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java1474 getColumnCount(y + 2));
1478 maxCols = Math.max(maxCols, row.getColumnCount() + prev);
1536 int cols = cell.getColumnCount();
1560 public int getColumnCount() { method in class:AccessibleHTML.TableElementInfo
1666 ((TableElementInfo)elementInfo).getColumnCount();
1681 int columnCount = ((TableElementInfo)elementInfo).getColumnCount();
1749 return ((TableElementInfo)elementInfo).getColumnCount();
2460 public int getColumnCount() { method in class:AccessibleHTML.TableElementInfo.TableRowElementInfo
2469 colCount += cell.getColumnCount();
2515 for (int colCount = cell.getColumnCount()
2529 private int getColumnCount(int rowspan) { method in class:AccessibleHTML.TableElementInfo.TableRowElementInfo
2610 public int getColumnCount() { method in class:AccessibleHTML.TableElementInfo.TableCellElementInfo
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DRegisterPanel.java65 public int getColumnCount() { return 2; }
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java228 leadColumn = clipToRange(leadColumn+dx, 0, table.getColumnCount());
272 maxX = table.getColumnCount() - 1;
303 maxX = table.getColumnCount() - 1;
416 int colCount = table.getColumnCount();
459 newColumn = forwards ? (ltr ? table.getColumnCount() : 0)
460 : (ltr ? 0 : table.getColumnCount());
538 && table.getColumnCount() > 0) {
562 if (table.getRowCount() <= 0 || table.getColumnCount() <= 0) {
1693 if (rowCount > 0 && table.getColumnCount() > 0) {
1766 if (table.getRowCount() <= 0 || table.getColumnCount() <
[all...]
H A DBasicTableHeaderUI.java228 if (0 <= newColumnIndex && newColumnIndex < cm.getColumnCount()) {
461 if (newIndex < header.getColumnModel().getColumnCount() - 1) {
525 int numCols = header.getColumnModel().getColumnCount();
597 for(int column = 0; column < columnModel.getColumnCount();
621 if (header.getColumnModel().getColumnCount() <= 0) {
639 cMax = cm.getColumnCount()-1;
716 for (int column = 0; column < cm.getColumnCount(); column++) {
732 for(int column = 0; column < columnModel.getColumnCount(); column++) {
839 if (cm.getColumnCount() <= 0) {
/openjdk7/jdk/test/javax/swing/JTable/6937798/
H A Dbug6937798.java128 public int getColumnCount() {

Completed in 549 milliseconds

123