Statistics
| Revision:

root / trunk / libraries / libGPE-GML / src-test / org / gvsig / gpe / gml / writers / GMLMultiPolygonLayerTest.java @ 11265

History | View | Annotate | Download (2.46 KB)

1
package org.gvsig.gpe.gml.writers;
2

    
3
import java.io.File;
4
import java.io.IOException;
5

    
6
import org.gvsig.gpe.GPEErrorHandler;
7
import org.gvsig.gpe.gml.writer.GPEGmlWriterHandler;
8
import org.gvsig.gpe.writers.GPELineStringLayerTest;
9
import org.gvsig.gpe.writers.GPEMultiPolygonLayerTest;
10
import org.gvsig.gpe.writers.GPEWriterHandler;
11

    
12
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
13
 *
14
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
15
 *
16
 * This program is free software; you can redistribute it and/or
17
 * modify it under the terms of the GNU General Public License
18
 * as published by the Free Software Foundation; either version 2
19
 * of the License, or (at your option) any later version.
20
 *
21
 * This program is distributed in the hope that it will be useful,
22
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
 * GNU General Public License for more details.
25
 *
26
 * You should have received a copy of the GNU General Public License
27
 * along with this program; if not, write to the Free Software
28
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
29
 *
30
 * For more information, contact:
31
 *
32
 *  Generalitat Valenciana
33
 *   Conselleria d'Infraestructures i Transport
34
 *   Av. Blasco Ib??ez, 50
35
 *   46010 VALENCIA
36
 *   SPAIN
37
 *
38
 *      +34 963862235
39
 *   gvsig@gva.es
40
 *      www.gvsig.gva.es
41
 *
42
 *    or
43
 *
44
 *   IVER T.I. S.A
45
 *   Salamanca 50
46
 *   46005 Valencia
47
 *   Spain
48
 *
49
 *   +34 963163400
50
 *   dac@iver.es
51
 */
52
/* CVS MESSAGES:
53
 *
54
 * $Id: GMLMultiPolygonLayerTest.java 11265 2007-04-19 11:56:03Z csanchez $
55
 * $Log$
56
 * Revision 1.3  2007-04-19 11:51:43  csanchez
57
 * Actualizacion protoripo libGPE
58
 *
59
 * Revision 1.2  2007/04/14 16:07:30  jorpiell
60
 * The writer has been created
61
 *
62
 * Revision 1.1  2007/04/13 13:16:00  jorpiell
63
 * Add the multiple geometries
64
 *
65
 *
66
 */
67
/**
68
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
69
 */
70
public class GMLMultiPolygonLayerTest extends GPEMultiPolygonLayerTest {
71

    
72
        /*
73
         * (non-Javadoc)
74
         * @see org.gvsig.gpe.writers.GPEWriterBaseTest#getFormat()
75
         */
76
        public String getFormat() {
77
                return "GML";
78
        }
79

    
80
        /*
81
         * (non-Javadoc)
82
         * @see org.gvsig.gpe.writers.GPEWriterBaseTest#getGPEParserName()
83
         */
84
        public String getGPEParserName() {
85
                return "org.gvsig.gpe.gml.GPEGmlParser";
86
        }
87

    
88
        public Class getGPEWriterHandlerClass() {
89
                // TODO Ap?ndice de m?todo generado autom?ticamente
90
                return null;
91
        }
92

    
93
        public Class getGPEParserClass() {
94
                // TODO Ap?ndice de m?todo generado autom?ticamente
95
                return null;
96
        }
97
}