/**
* init the model.<br>
* The ResultObject is a helper class that holds the generic list and
* the totalRecord count as int value.
*/
ResultObject ro = getBrancheService().getAllBranchesLikeText("", 0, getPageSize());
List<Branche> resultList = (List<Branche>) ro.getList();
this._paging.setTotalSize(ro.getTotalCount());
// set the model
setListModelList(new ListModelList(resultList));
this.listbox.setModel(getListModelList());