//---------------------------------------------------------------------------- // ListInterface.java by Dale/Joyce/Weems Chapter 6 // // // ajg Version: My array implementation is BOUNDED so I need both // bounded and unbounded interfaces as done with stacks // This file is not in the book's version. //---------------------------------------------------------------------------- package ch06.lists; public interface UnboundedListInterface extends ListInterface { void add(T element); // Add element to this list. } // Local Variables: // compile-command: "cd ../..; javac ch06/lists/UnboundedListInterface.java" // End: