Lines Matching defs:col

80  *          public Object getValueAt(int row, int col) { return new Integer(row*col); }
459 private final int col;
463 private DropLocation(Point p, int row, int col,
468 this.col = col;
506 return col;
541 + "column=" + col + ","
689 public Object getValueAt(int row, int col) { return rowData[row][col]; }
691 public void setValueAt(Object value, int row, int col) {
692 rowData[row][col] = value;
693 fireTableCellUpdated(row, col);
1525 int col = columnAtPoint(p);
1527 && SwingUtilities2.pointOutsidePrefSize(this, row, col, p);
1529 Rectangle rect = getCellRect(row, col, true);
1537 if (row == -1 || col == -1 || outside) {
1540 location = new DropLocation(p, row, col, false, false);
1544 if (row == -1 && col == -1) {
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);
1569 xSection == TRAILING ? col + 1 : col,
1576 location = new DropLocation(p, row, col, true, false);
1581 if (row == -1 && col == -1) {
1587 location = new DropLocation(p, getRowCount(), col, true, false);
1595 location = new DropLocation(p, row, col, true, false);
1598 if (row == -1 && col == -1) {
1604 location = new DropLocation(p, getRowCount(), col, true, false);
1616 location = new DropLocation(p, row, col, between, false);
1624 if (col == -1) {
1625 location = new DropLocation(p, getColumnCount(), col, false, true);
1630 col++;
1633 location = new DropLocation(p, row, col, false, true);
1641 if (col == -1) {
1650 col++;
1654 location = new DropLocation(p, row, col, false, between);
1657 if (row == -1 && col == -1) {
1666 location = new DropLocation(p, getRowCount(), col, true, true);
1668 location = new DropLocation(p, getRowCount(), col + 1, true, true);
1670 location = new DropLocation(p, getRowCount(), col, true, false);
1685 xSection == TRAILING ? col + 1 : col,
1750 for (int col : cols) {
1751 addColumnSelectionInterval(col, col);
2147 private int boundColumn(int col) {
2148 if (col< 0 || col >= getColumnCount()) {
2151 return col;
4801 // Couldn't find leading col - return some default value
4902 int col = columnAtPoint(visibleRect.getLocation());
4903 Rectangle cellRect = getCellRect(row, col, true);
4931 int col;
4957 col = columnAtPoint(newCellLoc);
4964 else if (orientation == SwingConstants.HORIZONTAL & col < 0) {
4974 Rectangle newCellRect = getCellRect(row, col, true);