
/**
 * This is an example for COP3337 
 *
 * @author Bill Kraynek
 */
public interface Stack<T> {
    public boolean isEmpty();
    public T peek();
    public T pop();
    public void push(T item);
}

