()
| 85 | } |
| 86 | |
| 87 | private void initialize() { |
| 88 | this.frame = new JFrame(); |
| 89 | this.frame.setBounds(100, 100, 450, 300); |
| 90 | this.frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
| 91 | this.frame.getContentPane() |
| 92 | .add(new DetailsPanel()); |
| 93 | } |
| 94 | |
| 95 | public static void main(String[] args) { |
| 96 | EventQueue.invokeLater(() -> { |