1: // @author Frank M. Carrano, Timothy M. Henry 2: // @version 5.0 3: public T getFront() 4: { 5: if (isEmpty()) 6: throw new EmptyQueueException(); 7: else 8: return queueNode.getData(); 9: } // end getFront