Searched refs:getRowCount (Results 1 - 25 of 51) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableModel.java61 public int getRowCount(); method in interface:TableModel
69 * @see #getRowCount
H A DDefaultTableModel.java224 justifyRows(0, getRowCount());
260 // Set the number of rows for the case when getRowCount
262 dataVector.setSize(getRowCount());
315 int old = getRowCount();
350 insertRow(getRowCount(), rowData);
519 justifyRows(0, getRowCount());
554 if (columnSize > getRowCount()) {
557 justifyRows(0, getRowCount());
565 justifyRows(0, getRowCount());
594 public int getRowCount() { method in class:DefaultTableModel
[all...]
H A DTableRowSorter.java264 public int getRowCount() { method in class:TableRowSorter.TableRowSorterModelWrapper
265 return (tableModel == null) ? 0 : tableModel.getRowCount();
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableMap.java83 public int getRowCount() { method in class:TableMap
84 return (model == null) ? 0 : model.getRowCount();
H A DTableSorter.java199 int rowCount = model.getRowCount();
220 if (indexes.length != model.getRowCount()) {
236 for (int i = 0; i < getRowCount(); i++) {
237 for (int j = i + 1; j < getRowCount(); j++) {
H A DTableExample3.java108 public int getRowCount() {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DTreeUI.java63 public abstract int getRowCount(JTree tree); method in class:TreeUI
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DTreeTableModelAdapter.java103 public int getRowCount() { method in class:TreeTableModelAdapter
104 return tree.getRowCount();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultRowSorter.java221 modelRowCount = getModelWrapper().getRowCount();
498 if (index < 0 || index >= getModelWrapper().getRowCount()) {
513 if (index < 0 || index >= getModelWrapper().getRowCount()) {
602 createModelToView(getModelWrapper().getRowCount());
603 createViewToModel(getModelWrapper().getRowCount());
633 int rowCount = getModelWrapper().getRowCount();
812 // When filtering this may differ from getModelWrapper().getRowCount()
815 return getModelWrapper().getRowCount();
822 return getModelWrapper().getRowCount();
844 modelRowCount = getModelWrapper().getRowCount();
1274 public abstract int getRowCount(); method in class:DefaultRowSorter.ModelWrapper
[all...]
H A DJTable.java79 * public int getRowCount() { return 10;}
687 public int getRowCount() { return rowData.length; }
955 rowModel = new SizeSequence(getRowCount(), getRowHeight());
1553 location = new DropLocation(p, getRowCount(), col, true, true);
1555 location = new DropLocation(p, getRowCount(), col + 1, true, true);
1557 location = new DropLocation(p, getRowCount(), col, true, false);
1587 location = new DropLocation(p, getRowCount(), col, true, false);
1604 location = new DropLocation(p, getRowCount(), col, true, false);
1666 location = new DropLocation(p, getRowCount(), col, true, true);
1668 location = new DropLocation(p, getRowCount(), co
2656 public int getRowCount() { method in class:JTable
[all...]
H A DTablePrintable.java296 if (row >= table.getRowCount() && col == 0) {
471 int rowCount = table.getRowCount();
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DAbstractLayoutCache.java187 int rowCount = getRowCount();
213 int rowCount = getRowCount();
356 public abstract int getRowCount(); method in class:AbstractLayoutCache
H A DVariableHeightLayoutCache.java136 if(getRowCount() > 0)
233 if(row >= 0 && row < getRowCount()) {
262 public int getRowCount() { method in class:VariableHeightLayoutCache
288 int rowCount = getRowCount();
324 if(getRowCount() == 0)
595 if(getRowCount() > 0)
719 if(row >= 0 && row < getRowCount()) {
883 if(location >= 0 && location < getRowCount()) {
929 if(getRowCount() == 0)
931 return Math.max(0, Math.min(getRowCount()
[all...]
/openjdk7/jdk/test/javax/swing/JTable/6777378/
H A Dbug6777378.java57 public int getRowCount() {
/openjdk7/jdk/test/javax/swing/JTable/
H A DTest6888156.java55 @Override public int getRowCount() {
/openjdk7/jdk/test/javax/swing/JTable/7068740/
H A Dbug7068740.java53 public int getRowCount() {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiTreeUI.java118 * Invokes the <code>getRowCount</code> method on each UI handled by this object.
123 public int getRowCount(JTree a) { method in class:MultiTreeUI
125 ((TreeUI) (uis.elementAt(0))).getRowCount(a);
127 ((TreeUI) (uis.elementAt(i))).getRowCount(a);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DTableSorter.java65 invertedIndex = new int[getRowCount()];
142 quickSort(0,getRowCount()-1,column,isAscending);
148 for (int i = 0; i < getRowCount(); i++) {
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java1476 delta = Math.max(row.getRowCount(), delta);
1518 int rows = cell.getRowCount();
1550 public int getRowCount() { method in class:AccessibleHTML.TableElementInfo
1665 return ((TableElementInfo)elementInfo).getRowCount() *
1680 int rowCount = ((TableElementInfo)elementInfo).getRowCount();
1740 return ((TableElementInfo)elementInfo).getRowCount();
2240 return elementInfo.getRowCount();
2256 return elementInfo.getRowCount();
2439 public int getRowCount() { method in class:AccessibleHTML.TableElementInfo.TableRowElementInfo
2449 rowCount = Math.max(rowCount, cell.getRowCount());
2599 public int getRowCount() { method in class:AccessibleHTML.TableElementInfo.TableCellElementInfo
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectHistogramPanel.java178 public int getRowCount() { method in class:ObjectHistogramPanel.ObjectHistogramTableModel
298 if (row == model.getRowCount()) {
306 for (int i = row; i < model.getRowCount(); i++) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DRegisterPanel.java66 public int getRowCount() { return registers.size(); }
/openjdk7/jdk/test/javax/swing/JTable/6937798/
H A Dbug6937798.java132 public int getRowCount() {
/openjdk7/jdk/test/javax/swing/JTree/8003400/
H A DTest8003400.java96 Rectangle inner = tree.getRowBounds(tree.getRowCount() - 1);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java227 leadRow = clipToRange(leadRow+dy, 0, table.getRowCount());
281 maxY = table.getRowCount() - 1;
304 maxY = table.getRowCount() - 1;
411 int rowCount = table.getRowCount();
441 newRow = table.getRowCount();
547 && table.getRowCount() > 0) {
562 if (table.getRowCount() <= 0 || table.getColumnCount() <= 0) {
1692 int rowCount = table.getRowCount();
1766 if (table.getRowCount() <= 0 || table.getColumnCount() <= 0 ||
1793 rMax = table.getRowCount()
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTableView.java125 int getRowCount() { method in class:TableView
336 int n = getRowCount();
411 int nrows = getRowCount();
828 public int getRowCount() { method in class:TableView.TableCell
903 public int getRowCount(); method in interface:TableView.GridCell

Completed in 177 milliseconds

123