Lines Matching refs:col
125 int col = columnAtPoint( event.getPoint() ); in initComponents()
126 if (col != 2) in initComponents()
130 Object o = getValueAt(row, col); in initComponents()
143 int col = columnAtPoint( event.getPoint() ); in initComponents()
144 if (col != 2) in initComponents()
148 Object o = getValueAt(row,col); in initComponents()
156 Point pt = getCellRect(row, col, true).getLocation(); in initComponents()
323 public String getColumnName(int col) { in getColumnName() argument
324 return colNames[col]; in getColumnName()
327 public Object getValueAt(int row, int col) { in getValueAt() argument
329 col < 0 || col > getColumnCount()) in getValueAt()
333 return aRow.get(col); in getValueAt()
340 public boolean isCellEditable(int row, int col) { in isCellEditable() argument
341 if (col == 0) { in isCellEditable()
348 public void setValueAt(Object value, int row, int col) { in setValueAt() argument
350 aRow.set(col, value); in setValueAt()
351 fireTableCellUpdated(row, col); in setValueAt()