(ActionEvent e)
| 79 | JButton addButton = new JButton("Add"); |
| 80 | addButton.addActionListener(new ActionListener() { |
| 81 | @Override |
| 82 | public void actionPerformed(ActionEvent e) { |
| 83 | addRow(null,tableModel); |
| 84 | } |
| 85 | }); |
| 86 | buttonPanel.add(addButton); |
| 87 |
nothing calls this directly
no test coverage detected