Example usage for com.google.gwt.dev.util.collect Lists sort

List of usage examples for com.google.gwt.dev.util.collect Lists sort

Introduction

In this page you can find the example usage for com.google.gwt.dev.util.collect Lists sort.

Prototype

public static <T extends Comparable<? super T>> List<T> sort(List<T> list) 

Source Link

Usage

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;
}