}
protected void sort(final String column, final boolean ascending) {
Comparator comparator = new Comparator() {
public int compare(Object o1, Object o2) {
ContactVO c1 = (ContactVO) o1;
ContactVO c2 = (ContactVO) o2;
if (column == null) {
return 0;
}
if (column.equals("custAccountId")) {
return ascending
? c1.getCustAccountVO().getCustAccountId().compareTo(
c2.getCustAccountVO().getCustAccountId())
: c2.getCustAccountVO().getCustAccountId().compareTo(
c1.getCustAccountVO().getCustAccountId());
} else {
return 0;
}
}