fun with collections

This commit is contained in:
Joel Dice
2007-07-21 21:47:29 -06:00
parent da17490206
commit ecd31a10a4
11 changed files with 566 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package java.util;
public interface Enumeration<T> {
public T nextElement();
public boolean hasMoreElements();
}