org.apache.batik.gvt.event
public abstract class GraphicsNodeMouseAdapter extends Object implements GraphicsNodeMouseListener
Extend this class to create a GraphicsNodeMouseEvent listener and override the methods for the events of interest. (If you implement the GraphicsNodeMouseListener interface, you have to define all of the methods in it. This abstract class defines null methods for them all, so you can only have to define methods for events you care about.)
Method Summary | |
---|---|
void | mouseClicked(GraphicsNodeMouseEvent evt) |
void | mouseDragged(GraphicsNodeMouseEvent evt) |
void | mouseEntered(GraphicsNodeMouseEvent evt) |
void | mouseExited(GraphicsNodeMouseEvent evt) |
void | mouseMoved(GraphicsNodeMouseEvent evt) |
void | mousePressed(GraphicsNodeMouseEvent evt) |
void | mouseReleased(GraphicsNodeMouseEvent evt) |