// Recipe implementation of the Stack ADT. abstract class StackBase implements Stack { public abstract Stack push (E x); public abstract boolean isEmpty(); public abstract E top(); public abstract Stack pop(); public abstract int size(); }