629630631632633634635636637
model.setFlag(flag, filter.filter(model)); } } public void sortByAttribute(String childName) { Sorter sorter = new AttributeSorter(childName); sort(sorter); }
635636637638639640641642643
sort(sorter); } public void sortInsertByAttribute(DataModel model, String childName) { Sorter sorter = new AttributeSorter(childName); sortInsert(model, sorter); }
641642643644645646647648649
sortInsert(model, sorter); } public void sortByAttributeDesc(String childName) { Sorter sorter = new AttributeSorter(childName, true); sort(sorter); }