static L ai_triplesSortedByDescCreationDate(Collection l) { L l2 = cloneList(l); sort(l2, new Comparator() { public int compare(TripleWeb a, TripleWeb b) { ret sign(b.created_compact-a.created_compact); } }); ret l2; }