Lines Matching refs:col
98 int col = columnAtPoint( event.getPoint() ); in initComponents()
99 if (col != 2) in initComponents()
103 Object o = getValueAt(row, col); in initComponents()
116 int col = columnAtPoint( event.getPoint() ); in initComponents()
117 if (col != 2) in initComponents()
121 Object o = getValueAt(row,col); in initComponents()
129 Point pt = getCellRect(row, col, true).getLocation(); in initComponents()
314 public String getColumnName(int col) { in getColumnName() argument
315 return colNames[col]; in getColumnName()
318 public Object getValueAt(int row, int col) { in getValueAt() argument
320 col < 0 || col > getColumnCount()) in getValueAt()
324 return aRow.get(col); in getValueAt()
331 public boolean isCellEditable(int row, int col) { in isCellEditable() argument
332 if (col == 0) { in isCellEditable()
339 public void setValueAt(Object value, int row, int col) { in setValueAt() argument
341 aRow.set(col, value); in setValueAt()
342 fireTableCellUpdated(row, col); in setValueAt()