(MouseEvent e)
| 338 | |
| 339 | |
| 340 | public void mouseMoved(MouseEvent e) { |
| 341 | if (!isEnabled()) |
| 342 | return; |
| 343 | |
| 344 | // mouse events before paint(); |
| 345 | if (state == null) return; |
| 346 | |
| 347 | if (state[OPEN] != INACTIVE) { |
| 348 | // avoid flicker, since there will probably be an update event |
| 349 | setState(OPEN, INACTIVE, false); |
| 350 | } |
| 351 | handleMouse(e); |
| 352 | } |
| 353 | |
| 354 | |
| 355 | public void mouseDragged(MouseEvent e) { |
nothing calls this directly
no test coverage detected