Statistics
| Revision:

gvsig-raster / org.gvsig.raster.tools / branches / org.gvsig.raster.tools_dataaccess_refactoring / org.gvsig.raster.tools.app.basic / src / main / java / org / gvsig / raster / tools / app / basic / tool / saveviewtoraster / ui / listener / SaveRasterActions.java @ 2340

History | View | Annotate | Download (2.35 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
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 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
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22
package org.gvsig.raster.tools.app.basic.tool.saveviewtoraster.ui.listener;
23

    
24
import org.gvsig.raster.algorithm.process.IProcessActions;
25
import org.gvsig.raster.swing.RasterSwingLibrary;
26
import org.gvsig.raster.swing.RasterSwingLocator;
27
import org.gvsig.raster.tools.app.basic.RasterToolsUtil;
28
import org.gvsig.raster.util.RasterNotLoadException;
29
/**
30
 * Acciones que ejecuta el proceso de salvado.
31
 *
32
 * @version 26/09/2007
33
 * @author Nacho Brodin (nachobrodin@gmail.com)
34
 */
35
public class SaveRasterActions implements IProcessActions {
36
        private String                      viewName         = null;
37
        
38
        public SaveRasterActions(String viewName) {
39
                this.viewName = viewName;
40
        }
41
        /*
42
         * (non-Javadoc)
43
         * @see org.gvsig.raster.IProcessActions#end(java.lang.Object)
44
         */
45
        public void end(Object params) {
46
                if(        params instanceof Object[] &&
47
                        ((Object[])params).length == 2 &&
48
                        ((Object[])params)[0] instanceof String &&
49
                        ((Object[])params)[1] instanceof Long) {
50

    
51
                        String fName = (String)((Object[])params)[0];
52
                        long milis = ((Long)((Object[])params)[1]).longValue();
53

    
54
                        if(RasterSwingLibrary.messageBoxYesOrNot("cargar_toc", this)) {
55
                                try {
56
                                        RasterToolsUtil.loadLayer(viewName, fName, null);
57
                                } catch (RasterNotLoadException e) {
58
                                        RasterSwingLibrary.messageBoxError("error_load_layer", this, e);
59
                                }
60
                        }
61
                        RasterSwingLocator.getSwingManager().showSummaryProcessDialog(fName, milis);
62
                }
63
        }
64

    
65
        public void interrupted() {
66
                
67
        }
68
        
69
        public void updateProgress(int current, int total) {
70
                
71
        }
72
}