0 public void setRowList(List rowList) {
1 this.rowList = rowList;
2 if (this.rowList == null) {
3 this.rowCount = 0;
4 } else {
5 this.rowCount = this.rowList.size();
6 }
7 }
So in my debugger when the above code is called during the
setDataProvider method it goes like this....
during line 1 rowList and this.rowList are null, then i step to line 2
still null, step over that and instead of it going to line 3 it ends
up on 5 with the first page of data populated and my breakpoint on
getdata never hits. What am I missing here?
Damian