()
| 199 | } |
| 200 | |
| 201 | private void initialize() { |
| 202 | this.frame = new JFrame(); |
| 203 | this.frame.setBounds(100, 100, 450, 300); |
| 204 | this.frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
| 205 | this.frame.getContentPane() |
| 206 | .add(new InputPanel()); |
| 207 | } |
| 208 | |
| 209 | public static void main(String[] args) { |
| 210 | EventQueue.invokeLater(() -> { |