1: public void push(T newEntry) 2: { 3: checkInitialization(); 4: stack.add(newEntry); 5: } // end push 6: // Version 4.0