public boolean isEmpty()
{
   return stack.isEmpty();
} // end isEmpty

public void clear()
{
   stack.clear();
} // end clear
// Version 4.0
