public class Stack { private List items = new ArrayList(); @notnull public void push (E item) { this.items.add(item); } }