Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / events / listeners / ErrorListener.java @ 40559

History | View | Annotate | Download (1.96 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
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 3
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
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/* CVS MESSAGES:
25
*
26
* $Id: ErrorListener.java 20989 2008-05-28 11:05:57Z jmvivo $
27
* $Log$
28
* Revision 1.2  2006-09-21 17:20:50  azabala
29
* added method to report many driver exceptions
30
*
31
* Revision 1.1  2005/12/20 10:56:34  jaume
32
* Added an error event to fmap
33
*
34
*
35
*/
36
/**
37
 * 
38
 */
39
package org.gvsig.fmap.mapcontext.events.listeners;
40

    
41
import java.util.List;
42

    
43
import org.gvsig.fmap.mapcontext.events.ErrorEvent;
44

    
45

    
46
/**
47
 * @author jaume
48
 *
49
 */
50
public interface ErrorListener {
51
    /**
52
     * Listen for error events
53
     * (usually caused by driverExceptions)
54
     * @param e
55
     */
56
        void errorThrown(ErrorEvent e);
57

    
58
        /**
59
         * Report a bundle of driver exceptions caused in the same
60
         * fmap atomic transaction
61
         * @param introductoryText introductory text specified by developer. It null, used ""
62
         * @param driverExceptions list with a bundle of driver exceptions catched during
63
         * an atomic event
64
         */
65
        void reportDriverExceptions(String introductoryText, List driverExceptions);
66
}