// PRESSED, THE CONTENT OF THE Output IS ERASED.
//
p = new Box(BoxLayout.X_AXIS);
p.add(Box.createHorizontalStrut(50));
JButton reset = new JButton("Reset");
reset.addActionListener(new ResetAction(swingUI));
p.add(reset);
panel.add(p);
panel.add(Box.createVerticalStrut(30));
return panel;