List of usage examples for com.google.gwt.dev.util.collect Lists sort
public static <T extends Comparable<? super T>> List<T> sort(List<T> list)
From source file:com.geekblog.page.server.EntryServiceImpl.java
License:Apache License
@Override public List<Entry> getAllEntries() { System.out.println("DBstub size: " + EntryDBstub.size()); Lists.sort(EntryDBstub); return EntryDBstub; }