Tagged Questions
3
votes
2answers
458 views
How do I build a HTML table from Glazed List?
Lat week I downloaded the Glazed List library into eclipse. I have been looking through the tutorials and it seems that everything is designed to run jTable or SWT. I am need a backing list(Map, ...
0
votes
1answer
53 views
Glazed Lists SortedList update when source object order property changed
I have some object with orderProperty
class Car
{
private int order;
// getter and setter implementation
}
Then I create EventList:
EventList<Car> cars=new ...