Esempio n. 1
0
 public Object getValueAt(int row, int col) {
   Condition cond = (Condition) m_conditions.get(row);
   if (col == 0) {
     return cond.getProperty();
   } else if (col == 1) {
     return getNiceName(cond.getOperator().toString());
   } else {
     return cond.getValue();
   }
 }