(MouseEvent e)
| 118 | } |
| 119 | |
| 120 | public void mouseExited(MouseEvent e) { |
| 121 | // only clear if it's been set |
| 122 | if (lastNoticeName != null) { |
| 123 | // only clear if it's the same as what we set it to |
| 124 | editor.clearNotice(lastNoticeName); |
| 125 | lastNoticeName = null; |
| 126 | } |
| 127 | } |
| 128 | }); |
| 129 | |
| 130 | addMouseMotionListener(new MouseMotionAdapter() { |
nothing calls this directly
no test coverage detected