Exemplo n.º 1
0
 public llTest()
 {
     testList = new Restaurant.linkedList();
     testAdd();
     testDebug();
     testDelete();
     testDebug();
     testInsert();
     testDebug();
 }
Exemplo n.º 2
0
 //Default Constructor
 public queue()
 {
     myList = new linkedList();
 }
Exemplo n.º 3
0
 //Constructor
 public queue(linkedList list)
 {
     myList = list;
 }