import java.util.*; import java.io.*; public class P2 { /** * COMP2240 Assignment 2 Part 2 * Date: * Author: Zach S-B * Student Number: c3262201 */ private int numOfJobs = 0; private LinkedList jobList = new LinkedList(); private P2_Printer printer = new P2_Printer();; /** * Main. Runs the program */ public static void main(String[] args){ P2 system = new P2(); system.run(); } public void run() { //Read file inputs and save to a job list. readFile("../P2-1in.txt"); //Start the jobs going for(int i = 0; i