(MouseEvent e)
| 420 | |
| 421 | |
| 422 | public void mouseExited(MouseEvent e) { |
| 423 | // if the popup menu for is visible, don't register this, |
| 424 | // because the popup being set visible will fire a mouseExited() event |
| 425 | if ((popup != null) && popup.isVisible()) return; |
| 426 | |
| 427 | if (state[OPEN] != INACTIVE) { |
| 428 | setState(OPEN, INACTIVE, true); |
| 429 | } |
| 430 | handleMouse(e); |
| 431 | } |
| 432 | |
| 433 | |
| 434 | public void mousePressed(MouseEvent e) { |
nothing calls this directly
no test coverage detected