VL-Programmieren/VL14/Aufgabe02/PrinterQueue.java

13 lines
229 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 {
static LinkedList<String> queue = new LinkedList<String>();
}