public class DMV { Generator people; Queue mainLine; Queue classes; Queue licenses; int time; int start; int end; int classNum; int licenseNum; int totalClassTime; int totalLicenseTime; //Implement this, make sure you intialize everything public DMV(int start, int end){ } public void run (){ for( ; time < end; time++){ people.addPeople(mainLine, time); if(time > start && time % 30 == 0) startClass(); if(time > start && time % 5 == 0) getLicense(); moveMainLine(); } } //Implement This. Remember both the class and license line can only have 10 people in it public void moveMainLine(){ } //Implement this public void startClass(){ } //Implement This public void getLicense(){ } //Implement This public String returnStats(){ } }