(MouseEvent e)
| 432 | |
| 433 | |
| 434 | public void mousePressed(MouseEvent e) { |
| 435 | |
| 436 | // jdf |
| 437 | if (!isEnabled()) |
| 438 | return; |
| 439 | |
| 440 | final int x = e.getX(); |
| 441 | final int y = e.getY(); |
| 442 | |
| 443 | int sel = findSelection(x, y); |
| 444 | ///if (sel == -1) return false; |
| 445 | if (sel == -1) return; |
| 446 | currentRollover = -1; |
| 447 | |
| 448 | handleSelectionPressed(sel, e.isShiftDown(), x, y); |
| 449 | } |
| 450 | |
| 451 | public void mouseClicked(MouseEvent e) { |
| 452 | } |
nothing calls this directly
no test coverage detected