package net.innig.collect;

public interface Factory<T>
    {
    public T create();
    }

