Statistics
| Revision:

root / org.gvsig.gpe.exportto / trunk / org.gvsig.gpe.exportto / org.gvsig.gpe.exportto.kml / src / main / java / org / gvsig / gpe / exportto / kml / ExporttoKMLProviderFactory.java @ 340

History | View | Annotate | Download (2.12 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
package org.gvsig.gpe.exportto.kml;
25

    
26
import org.cresques.cts.IProjection;
27

    
28
import org.gvsig.exportto.swing.ExporttoSwingManager;
29
import org.gvsig.exportto.swing.prov.file.AbstractExporttoFileProviderFactory;
30
import org.gvsig.fmap.dal.feature.FeatureStore;
31
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
32
import org.gvsig.tools.dynobject.DynObject;
33
import org.gvsig.tools.service.ServiceException;
34
import org.gvsig.tools.service.spi.Provider;
35
import org.gvsig.tools.service.spi.ProviderServices;
36

    
37
/**
38
 * Factory of file {@link ExportoProvider} objects.
39
 * 
40
 * @author gvSIG Team
41
 * @version $Id$
42
 */
43
public class ExporttoKMLProviderFactory extends
44
    AbstractExporttoFileProviderFactory {
45

    
46
    private static final String PROVIDER_NAME = "KML";
47

    
48
    public ExporttoKMLProviderFactory() {
49
        super(new int[] {
50
                        ExporttoSwingManager.VECTORIAL_TABLE_WITH_GEOMETRY
51
        });
52
    }
53

    
54
    public Provider create(DynObject parameters, ProviderServices services)
55
        throws ServiceException {
56
        
57
        return new ExporttoKMLProvider(services,
58
            (FLyrVect) parameters.getDynValue(PARAMETER_LAYER));
59
    }
60

    
61
    public String getName() {
62
        return PROVIDER_NAME;
63
    }
64
}