private boolean compareObjects(Object objectLeft, Object objectRight) {
Iterator<Comparator> iter = list_of_comparators.iterator();
while(iter.hasNext()) {
Comparator c = iter.next();
if(c.canCompare(objectLeft, objectRight, this)) {
return c.compare(objectLeft, objectRight, this);
}
}
// return default_comparator.compare(objectLeft, objectRight, this);
return false;