//: com:bruceeckel:util:IntGenerator.java package com.bruceeckel.util; public interface IntGenerator { int next(); } ///:~