/** * A linear collection that supports the last-in, first-out policy. * The first element added by add and still in the collection is returned * by next or delete. * * Does not add any methods to Linear. Rather, adds a policy that * determines the values returned by next and delete. */ public interface Stack extends Linear { } // interface Stack