org.apache.batik.swing.gvt
Class InteractorAdapter
public
class
InteractorAdapter
extends Object
implements Interactor
This class represents an interactor which never interacts.
Method Summary |
boolean | endInteraction()
Tells whether the interaction has finished. |
void | keyPressed(KeyEvent e)
Invoked when a key has been pressed. |
void | keyReleased(KeyEvent e)
Invoked when a key has been released. |
void | keyTyped(KeyEvent e)
Invoked when a key has been typed.
|
void | mouseClicked(MouseEvent e)
Invoked when the mouse has been clicked on a component. |
void | mouseDragged(MouseEvent e)
Invoked when a mouse button is pressed on a component and then
dragged. |
void | mouseEntered(MouseEvent e)
Invoked when the mouse enters a component. |
void | mouseExited(MouseEvent e)
Invoked when the mouse exits a component. |
void | mouseMoved(MouseEvent e)
Invoked when the mouse button has been moved on a component
(with no buttons no down). |
void | mousePressed(MouseEvent e)
Invoked when a mouse button has been pressed on a component. |
void | mouseReleased(MouseEvent e)
Invoked when a mouse button has been released on a component. |
boolean | startInteraction(InputEvent ie)
Tells whether the given event will start the interactor. |
public boolean endInteraction()
Tells whether the interaction has finished.
public void keyPressed(KeyEvent e)
Invoked when a key has been pressed.
public void keyReleased(KeyEvent e)
Invoked when a key has been released.
public void keyTyped(KeyEvent e)
Invoked when a key has been typed.
This event occurs when a key press is followed by a key release.
public void mouseClicked(MouseEvent e)
Invoked when the mouse has been clicked on a component.
public void mouseDragged(MouseEvent e)
Invoked when a mouse button is pressed on a component and then
dragged. Mouse drag events will continue to be delivered to
the component where the first originated until the mouse button is
released (regardless of whether the mouse position is within the
bounds of the component).
public void mouseEntered(MouseEvent e)
Invoked when the mouse enters a component.
public void mouseExited(MouseEvent e)
Invoked when the mouse exits a component.
public void mouseMoved(MouseEvent e)
Invoked when the mouse button has been moved on a component
(with no buttons no down).
public void mousePressed(MouseEvent e)
Invoked when a mouse button has been pressed on a component.
public void mouseReleased(MouseEvent e)
Invoked when a mouse button has been released on a component.
public boolean startInteraction(InputEvent ie)
Tells whether the given event will start the interactor.
Copyright B) 2007 Apache Software Foundation. All Rights Reserved.