Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extGeoprocessingExtensions / src / com / iver / cit / gvsig / geoprocess / impl / reproject / ReprojectGeoprocessPlugin.java @ 6166

History | View | Annotate | Download (2.84 KB)

1
/*
2
 * Created on 03-jul-2006
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
/* CVS MESSAGES:
45
 *
46
 * $Id: ReprojectGeoprocessPlugin.java 6166 2006-07-03 20:29:16Z azabala $
47
 * $Log$
48
 * Revision 1.1  2006-07-03 20:28:29  azabala
49
 * *** empty log message ***
50
 *
51
 *
52
 */
53
package com.iver.cit.gvsig.geoprocess.impl.reproject;
54

    
55
import java.net.URL;
56

    
57
import com.iver.andami.PluginServices;
58
import com.iver.cit.gvsig.fmap.layers.FLayers;
59
import com.iver.cit.gvsig.geoprocess.core.IGeoprocessController;
60
import com.iver.cit.gvsig.geoprocess.core.IGeoprocessPlugin;
61
import com.iver.cit.gvsig.geoprocess.core.gui.IGeoprocessPanel;
62
import com.iver.cit.gvsig.geoprocess.impl.reproject.gui.GeoprocessingReprojectPanel;
63
import com.iver.cit.gvsig.geoprocess.impl.xyshift.XYShiftGeoprocessPlugin;
64
import com.iver.cit.gvsig.geoprocess.impl.xyshift.gui.GeoprocessingXYShiftPanel;
65
import com.iver.cit.gvsig.gui.View;
66

    
67
public class ReprojectGeoprocessPlugin implements IGeoprocessPlugin {
68

    
69
        public IGeoprocessPanel getGeoprocessPanel() {
70
                View vista = (View) PluginServices.getMDIManager().getActiveView();
71
                FLayers layers = vista.getModel().getMapContext().getLayers();
72
                return (IGeoprocessPanel) new GeoprocessingReprojectPanel(layers);
73
        }
74

    
75
        public URL getHtmlDescription() {
76
                URL url = ReprojectGeoprocessPlugin.class
77
                                .getResource("resources/description.html");
78
                return url;
79
        }
80

    
81
        public URL getImgDescription() {
82
                URL url = XYShiftGeoprocessPlugin.class
83
                                .getResource("resources/xyshiftdesc.png");
84
                return url;
85
        }
86

    
87
        public IGeoprocessController getGpController() {
88
                return new ReprojectGeoprocessController();
89
        }
90

    
91
        /*
92
         * TODO INTERNACIONALIZAR LOS NAMESPACES
93
         */
94
        public String getNamespace() {
95
                return "Conversion de datos/Reproject";
96
        }
97
        
98
        public String toString(){
99
                return "Reproyecci?n";
100
        }
101

    
102
}