blob: 1e251b90b5a65ad696a49e06fcc0d5a1c1f77207 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.draw2d;
/**
* A listener interface for receiving mouse motion events.
*/
public interface MouseMotionListener {
/**
* Called when the mouse has moved over the listened to object while a
* button was pressed.
*
* @param me
* The MouseEvent object
*/
void mouseDragged(MouseEvent me);
/**
* Called when the mouse has entered the listened to object.
*
* @param me
* The MouseEvent object
*/
void mouseEntered(MouseEvent me);
/**
* Called when the mouse has exited the listened to object.
*
* @param me
* The MouseEvent object
*/
void mouseExited(MouseEvent me);
/**
* Called when the mouse hovers over the listened to object.
*
* @param me
* The MouseEvent object
*/
void mouseHover(MouseEvent me);
/**
* Called when the mouse has moved over the listened to object.
*
* @param me
* The MouseEvent object
*/
void mouseMoved(MouseEvent me);
/**
* An empty implementation of MouseMotionListener for convenience.
*/
public class Stub implements MouseMotionListener {
/**
* @see org.eclipse.draw2d.MouseMotionListener#mouseDragged(MouseEvent)
*/
public void mouseDragged(MouseEvent me) {
}
/**
* @see org.eclipse.draw2d.MouseMotionListener#mouseEntered(MouseEvent)
*/
public void mouseEntered(MouseEvent me) {
}
/**
* @see org.eclipse.draw2d.MouseMotionListener#mouseExited(MouseEvent)
*/
public void mouseExited(MouseEvent me) {
}
/**
* @see org.eclipse.draw2d.MouseMotionListener#mouseMoved(MouseEvent)
*/
public void mouseMoved(MouseEvent me) {
}
/**
* @see org.eclipse.draw2d.MouseMotionListener#mouseHover(MouseEvent)
*/
public void mouseHover(MouseEvent me) {
}
}
}