View Javadoc
1   package emissary.util.io;
2   
3   /**
4    * Interface to generate unique filenames to be used in classes as needed.
5    */
6   public interface FileNameGenerator {
7       /**
8        * Returns the next unique filename from this generator.
9        */
10      String nextFileName();
11  }