[Java-gnome-developer] DataColumnObject problems
Brought to you by:
afcowie
From: Igor F. <if...@re...> - 2005-06-20 18:41:47
|
Hi, I'm having a problem using DataColumnObjects. I have the following code: ___________________________________________ TreeIter storeIter = store.appendRow(null); store.setValue(storeIter, referenceDataColumn, varRep); Object obj = store.getValue(storeIter, referenceDataColumn); System.out.println(obj); ___________________________________________ Here referenceDataColumn is an object of type DataColumnObject. >From what I understand I should be able to get my object back, however this prints null everytime through the code. Did anyone have these problems before, is there anything special I need to do to store my objects in a DataColumnObject? Thanks, Igor |