	
/**	
 * IContainer
 * 
 * 
 * Created: Fri Oct 04 17:06:56 2002
 * 
 * @author <a href="mailto:bina@cse.buffalo.edu "</a>
 * Based on the Paper: Design Patterns for Data Structures By D. Nguyen
 * Interface design based on java.util.LinkedList
 * @version
 */
package containers;

public interface IContainer {
   
   boolean removeFirst ();
   void addFirst(Object o);

}// IContainer
