views:

142

answers:

1

I'm looking for a library able to build at runtime, using some configuration (xml, annotations, ...) and reflection, a complete JTable (model + searchable and sortable jtable) from a collection of POJOS.

I did not found anything like that on the web and I'm wondering if something already exist before I start to coding this.

+2  A: 

The project that sounds the most similar to your requirements is GlazedLists. It provides filtering instead of searching - and there's not really any configuration - it's just an API that provides TableModel/ListModel implementations that wrap your POJO collections.

Nate