Statistics
| Revision:

gvsig-raster / org.gvsig.raster.georeferencing / trunk / org.gvsig.raster.georeferencing / org.gvsig.raster.georeferencing.swing / org.gvsig.raster.georeferencing.swing.api / src / main / java / org / gvsig / raster / georeferencing / swing / view / ToolListener.java @ 1692

History | View | Annotate | Download (1.42 KB)

1 1479 nbrodin
/* gvSIG. Geographic Information System of the Valencian Government
2 1474 nbrodin
 *
3 1479 nbrodin
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5 1474 nbrodin
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18 1479 nbrodin
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21 1474 nbrodin
 */
22
package org.gvsig.raster.georeferencing.swing.view;
23
24
25
/**
26
 * Listener para las herramientas de la vista
27
 *
28
 * 17/01/2008
29
 * @author Nacho Brodin (nachobrodin@gmail.com)
30
 */
31
public interface ToolListener {
32
        /**
33
         * Informa de que la herramienta est? activa.
34
         * @param ev
35
         */
36
        public void onTool(ToolEvent ev);
37
        /**
38
         * Informa de que la herramienta est? activa.
39
         * @param ev
40
         */
41
        public void offTool(ToolEvent ev);
42
        /**
43
         * Evento de finalizaci?n de las acciones de la tool
44
         * @param ev ToolEvent
45
         */
46
        public void endAction(ToolEvent ev);
47
}