Revision 20098 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/tools/Listeners/PanListener.java

View differences:

PanListener.java
45 45

  
46 46

  
47 47
/**
48
 * Interfaz de listener de movimiento.
48
 * <p>Interface for all tools that reply for a {@link MoveEvent MoveEvent} produced in the 
49
 *  associated {@link MapControl MapControl} object, as a consequence of a 2D drag and drop
50
 *  movement of the mouse.</p>
49 51
 *
50 52
 * @author Vicente Caballero Navarro
51 53
 */
52 54
public interface PanListener extends ToolListener {
53 55
	/**
54
	 * Invocado cuando el usuario mueve el rat?n sobre la vista.
56
	 * <p>Called when user drags the mouse on the view.</p>
57
	 * <p>Updates the extent coordinates according to the direction of the movement between
58
	 *  the initial and final points of line determined by the move of the mouse.</p>
55 59
	 *
56
	 * @param event MoveEvent.
60
	 * @param event mouse event information about the initial and final positions of the movement 
57 61
	 *
58
	 * @throws BehaviorException se lanza cuando falla la herramienta.
62
	 * @throws BehaviorException will be thrown when fails the process of this tool
59 63
	 */
60 64
	public void move(MoveEvent event) throws BehaviorException;
61 65
}

Also available in: Unified diff