(ActionEvent arg0)
| 40 | TargetAPIScan2.addActionListener(new ActionListener() { |
| 41 | |
| 42 | @Override |
| 43 | public void actionPerformed(ActionEvent arg0) { |
| 44 | try { |
| 45 | TargetAPIConfigPanel panel = new TargetAPIConfigPanel(); |
| 46 | BurpExtender.getCallbacks().customizeUiComponent(panel); |
| 47 | panel.setVisible(true); |
| 48 | } catch (Exception e) { |
| 49 | e.printStackTrace(BurpExtender.getStderr()); |
| 50 | } |
| 51 | } |
| 52 | }); |
| 53 | menuItemList.add(AutoAPIScan); |
| 54 | menuItemList.add(TargetAPIScan2); |
nothing calls this directly
no test coverage detected