public class BasicTableUI.MouseInputHandler extends Object implements MouseInputListener
Constructor and Description |
---|
BasicTableUI.MouseInputHandler() |
Modifier and Type | Method and Description |
---|---|
void |
mouseClicked(MouseEvent e)
For the double click, start the cell editor.
|
void |
mouseDragged(MouseEvent e)
This method is called when the mouse is moved over a component
while a button has been pressed.
|
void |
mouseEntered(MouseEvent e)
This method is called when the mouse enters a component.
|
void |
mouseExited(MouseEvent e)
This method is called when the mouse exits a component.
|
void |
mouseMoved(MouseEvent e)
This method is called when the mouse is moved over a component
while no button is pressed.
|
void |
mousePressed(MouseEvent e)
This method is called when the mouse is pressed over a component.
|
void |
mouseReleased(MouseEvent e)
This method is called when the mouse is released over a component.
|
public BasicTableUI.MouseInputHandler()
public void mouseClicked(MouseEvent e)
mouseClicked
in interface MouseListener
e
- the MouseEvent
indicating the clickpublic void mouseDragged(MouseEvent e)
MouseMotionListener
mouseDragged
in interface MouseMotionListener
e
- the MouseEvent
indicating the motionpublic void mouseEntered(MouseEvent e)
MouseListener
mouseEntered
in interface MouseListener
e
- the MouseEvent
for the entrypublic void mouseExited(MouseEvent e)
MouseListener
mouseExited
in interface MouseListener
e
- the MouseEvent
for the exitpublic void mouseMoved(MouseEvent e)
MouseMotionListener
mouseMoved
in interface MouseMotionListener
e
- the MouseEvent
indicating the motionpublic void mousePressed(MouseEvent e)
MouseListener
mousePressed
in interface MouseListener
e
- the MouseEvent
for the presspublic void mouseReleased(MouseEvent e)
MouseListener
mouseReleased
in interface MouseListener
e
- the MouseEvent
for the release