 public interface Stack{
   void push(Object o)
     throws StackException;
   Object pop()
     throws StackException;
   Object top()
     throws StackException;
   int size();
 }

