Revision 14288

View differences:

trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/ViewPortListener.java
41 41
package com.iver.cit.gvsig.fmap;
42 42

  
43 43
/**
44
 * Interfaz de Listener de ViewPort.
44
 * <p>Defines the interface for an object that listens to changes in a view port.</p>
45 45
 */
46 46
public interface ViewPortListener {
47 47
	/**
48
	 * Cambio de extent.
48
 	 * <p>Called when the <i>extent</i> of the view port has changed.</p>
49 49
	 *
50
	 * @param e ExtentEvent
50
	 * @param e an extend event object
51 51
	 */
52 52
	void extentChanged(ExtentEvent e);
53 53

  
54 54
	/**
55
	 * Cambio de color.
56
	 *
57
	 * @param e ColorEvent.
55
	 * <p>Called when the background color of the view port has changed.</p>
56
	 * 
57
	 * @param e a color event object
58 58
	 */
59 59
	void backColorChanged(ColorEvent e);
60 60

  
61 61
	/**
62
	 * Cambio de proyeccion.
62
	 * <p>Called when the projection of the view port has changed.</p>
63 63
	 *
64
	 * @param e ProjectionEvent.
64
	 * @param e a projection event object
65 65
	 */
66 66
	void projectionChanged(ProjectionEvent e);
67

  
68
	
69 67
}
68

  

Also available in: Unified diff