| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RemoveServerAction |
|
| 1.0;1 |
| 1 | package kg.apc.jmeter.config; | |
| 2 | ||
| 3 | import java.awt.event.ActionEvent; | |
| 4 | import java.awt.event.ActionListener; | |
| 5 | ||
| 6 | public class RemoveServerAction implements ActionListener { | |
| 7 | private final JMeterServerPanel owner; | |
| 8 | ||
| 9 | 3 | public RemoveServerAction(JMeterServerPanel jMeterServerPanel) { |
| 10 | 3 | owner=jMeterServerPanel; |
| 11 | 3 | } |
| 12 | ||
| 13 | public void actionPerformed(ActionEvent actionEvent) { | |
| 14 | 0 | owner.remove(); |
| 15 | 0 | } |
| 16 | } |