//: net/mindview/util/Generator.java // A generic itf. package net.mindview.util; public interface Generator<T> { T next(); } // /:~