Example #1
0
 protected void insertAtHeadOfQueue(Customer e) {
   q.insertAtFront(e);
 }
Example #2
0
 protected void insertIntoQueue(Customer e) {
   q.insertAtFront(e);
 }