public class SimpleCountingBean { private int count; public SimpleCountingBean() { count = 0; } public int getCount() { count++; return count; } }