|
From: JP P. <jp....@ti...> - 2003-08-30 12:44:59
|
Juergen,
Is it a reason for which the MutableSortDefinition has no more a
constructor with its properties (property, ascending, ignoreCase and
eventually which was not on the previous constructor
toggleAscendingOnProperty)?
It's now instead a constructor taking a base sort definition that don't
help me.
It was simpler to create sort definitions.
SortDefinition soertDef = new MutableSortDef(...);
Has now to be replaced by
SortDefinition soertDef;
Public Constructor {
Super();
MutableSortDefinition sort = new MutableDefinition();
Sort.setXXX(xxx);
Sort.setYYY(yyy);
Sort.setZZZ(zzz);
sortDef = sort;
}
Jean-Pierre
|