KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > swingwt > awt > event > MouseMotionAdapter


1 /*
2    SwingWT
3    Copyright(c)2003-2004, Tomer Bartletz
4  
5    For more information on distributing and using this program, please
6    see the accompanying "COPYING" file.
7  
8    Contact me by electronic mail: tomerb@users.sourceforge.net
9
10    $Log: MouseMotionAdapter.java,v $
11    Revision 1.1 2004/04/23 10:02:49 bobintetley
12    MouseEvent BUTTON_MASK constants, JSlider.createStandardLabels(), FontMetrics
13    thread safety, Component/Toolkit.getFontMetrics() and MouseMotionAdapter
14
15
16  */

17
18 package swingwt.awt.event;
19
20 public class MouseMotionAdapter implements MouseMotionListener {
21     
22     public void mouseDragged(MouseEvent e) {}
23     public void mouseMoved(MouseEvent e) {}
24     
25 }
26
Popular Tags