()
| 113 | } |
| 114 | |
| 115 | private void initialize() { |
| 116 | this.frame = new JFrame(); |
| 117 | this.frame.setBounds(100, 100, 450, 300); |
| 118 | this.frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
| 119 | this.frame.getContentPane() |
| 120 | .add(new SetupPanel()); |
| 121 | } |
| 122 | |
| 123 | public static void main(String[] args) { |
| 124 | EventQueue.invokeLater(() -> { |