/* The declaration of a class implementing this interface would look something like this: public class MyClass implements GStack {...} */ public interface GStack { public boolean isEmpty(); public void push(T d); public T pop(); public T peek(); }