Source of 8.13.java


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