Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libUIComponent / src / org / gvsig / gui / beans / incrementabletask / IncrementableListener.java @ 31952

History | View | Annotate | Download (1.65 KB)

1
package org.gvsig.gui.beans.incrementabletask;
2

    
3
/* gvSIG. Geographic Information System of the Valencian Government
4
 *
5
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
6
 * of the Valencian Government (CIT)
7
 * 
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 * 
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *  
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
21
 * MA  02110-1301, USA.
22
 * 
23
 */
24

    
25
import java.util.EventListener;
26

    
27
/**
28
 * Interfaz para la ventana IncrementableTask, aqui se define los
29
 * comportamientos de los botones de la ventana.
30
 *
31
 * @version 23/04/2007
32
 * @author BorSanZa - Borja S?nchez Zamorano (borja.sanchez@iver.es)
33
 */
34
public interface IncrementableListener extends EventListener {
35
        /**
36
         * Invocado cuando se aprieta el boton Resumir de la ventana
37
         * @param e
38
         */
39
        public void actionResumed(IncrementableEvent e);
40

    
41
        /**
42
         * Invocado cuando se aprieta el boton Suspender de la ventana
43
         * @param e
44
         */
45
        public void actionSuspended(IncrementableEvent e);
46

    
47
        /**
48
         * Invocado cuando se aprieta el boton Cancelar de la ventana
49
         * @param e
50
         */
51
        public void actionCanceled(IncrementableEvent e);
52
}