public DataTableListWrapper(List<Bundle> list) {
final ListBundleFormat listFormat = new ListBundleFormat();
this.format = listFormat;
this.list = list;
this.factory = new BundleFactory() {
@Override
public Bundle createBundle() {
return new ListBundle(listFormat);
}
};