1 /*2 SwingWT3 Copyright(c)2003-2004, Tomer Bartletz4 5 For more information on distributing and using this program, please6 see the accompanying "COPYING" file.7 8 Contact me by electronic mail: tomerb@users.sourceforge.net9 10 $Log: MouseMotionAdapter.java,v $11 Revision 1.1 2004/04/23 10:02:49 bobintetley12 MouseEvent BUTTON_MASK constants, JSlider.createStandardLabels(), FontMetrics13 thread safety, Component/Toolkit.getFontMetrics() and MouseMotionAdapter14 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