(final MouseEvent e)
| 101 | addMouseListener(new PopupMouseAdapter() |
| 102 | { |
| 103 | @Override |
| 104 | public void showPopup(final MouseEvent e) |
| 105 | { |
| 106 | popupMenu.setVisible(true); |
| 107 | popupMenu.show(e.getComponent(), e.getX(), e.getY() - popupMenu.getHeight()); |
| 108 | } |
| 109 | }); |
| 110 | } |
| 111 |
nothing calls this directly
no test coverage detected