001package org.clafer.collection;
002
003/**
004 *
005 * @author jimmy
006 */
007public class Counter {
008
009    private int count = 0;
010
011    public int next() {
012        return count++;
013    }
014}