}
public SimpleUI(WebsiteQueue queue, WebsiteResultQueue resultQueue) {
super("Plaecholder");
this.setLayout(new BorderLayout());
this.add(new SimplePanel(queue, resultQueue));
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setPreferredSize(new Dimension(375, 200));
this.pack();
this.setLocationRelativeTo(null);
this.setVisible(true);