See More

public class Entry { private int total = 10; public int getTotal() { return total; } public Entry setTotal(int total) { this.total = total; return this; } }