(MouseEvent e)
| 160 | |
| 161 | addMouseMotionListener(new MouseMotionListener() { |
| 162 | @Override |
| 163 | public void mouseDragged(MouseEvent e) { |
| 164 | // BasicSplitPaneUI.startDragging gets called even when you click but |
| 165 | // don't drag, so we can't expand the console whenever that gets called |
| 166 | // or the button wouldn't work. |
| 167 | setCollapsed(false); |
| 168 | |
| 169 | updateMouse(e, true); |
| 170 | } |
| 171 | |
| 172 | @Override |
| 173 | public void mouseMoved(MouseEvent e) { |
nothing calls this directly
no test coverage detected