// CSE 373, Winter 2013, Marty Stepp // This interface defines a Stack abstract data type (ADT) // allowing adding/removing items in FIFO order from the "top" // of the stack. public interface Stack { public void push(E value); public E pop(); public E peek(); public boolean isEmpty(); public int size(); }