示例#1
0
 /*Create an array list of random orders for the available status - this will help put the equipment randomly*/
 private void randomizeOrderRent() {
   for (int counter = 0; counter < RENTCAPACITYX * RENTCAPACITYY; counter++) {
     randomOrder.add(counter);
   }
   Collections.shuffle(randomOrder);
 }