VL-Programmieren/VL14/Aufgabe02/PrinterQueue.java

13 lines
231 B
Java
Raw Normal View History

2024-05-30 09:27:24 +00:00
package VL14.Aufgabe02;
import java.util.LinkedList;
/**
* Class which represents a printer queue.
*
* @author Sebastian Brosch
*/
public class PrinterQueue {
2024-06-03 20:04:50 +00:00
static LinkedList<Integer> queue = new LinkedList<Integer>();
2024-05-30 09:27:24 +00:00
}