01: package org.uispec4j.utils; 02: 03: public class Counter { 04: private int count; 05: 06: public void increment() { 07: count++; 08: } 09: 10: public int getCount() { 11: return count; 12: } 13: }