Statistics
| Revision:

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

History | View | Annotate | Download (2.56 KB)

1 11178 jorpiell
package org.gvsig.gpe.gml.writers;
2
3
import java.io.File;
4
import java.io.IOException;
5
6
import junit.framework.TestCase;
7
8
import org.gvsig.gpe.GPEErrorHandler;
9
import org.gvsig.gpe.GPEErrorHandlerTest;
10
import org.gvsig.gpe.gml.writer.GPEGmlWriterHandler;
11
import org.gvsig.gpe.writers.GPEPointsLayerTest;
12
import org.gvsig.gpe.writers.GPEWriterHandler;
13
14
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
15
 *
16
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
17
 *
18
 * This program is free software; you can redistribute it and/or
19
 * modify it under the terms of the GNU General Public License
20
 * as published by the Free Software Foundation; either version 2
21
 * of the License, or (at your option) any later version.
22
 *
23
 * This program is distributed in the hope that it will be useful,
24
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26
 * GNU General Public License for more details.
27
 *
28
 * You should have received a copy of the GNU General Public License
29
 * along with this program; if not, write to the Free Software
30
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
31
 *
32
 * For more information, contact:
33
 *
34
 *  Generalitat Valenciana
35
 *   Conselleria d'Infraestructures i Transport
36
 *   Av. Blasco Ib??ez, 50
37
 *   46010 VALENCIA
38
 *   SPAIN
39
 *
40
 *      +34 963862235
41
 *   gvsig@gva.es
42
 *      www.gvsig.gva.es
43
 *
44
 *    or
45
 *
46
 *   IVER T.I. S.A
47
 *   Salamanca 50
48
 *   46005 Valencia
49
 *   Spain
50
 *
51
 *   +34 963163400
52
 *   dac@iver.es
53
 */
54
/* CVS MESSAGES:
55
 *
56
 * $Id$
57
 * $Log$
58 11265 csanchez
 * Revision 1.3  2007-04-19 11:51:43  csanchez
59
 * Actualizacion protoripo libGPE
60
 *
61
 * Revision 1.2  2007/04/14 16:07:30  jorpiell
62 11210 jorpiell
 * The writer has been created
63
 *
64
 * Revision 1.1  2007/04/13 07:17:57  jorpiell
65 11178 jorpiell
 * Add the writting tests for the simple geometries
66
 *
67
 * Revision 1.1  2007/04/12 17:06:44  jorpiell
68
 * First GML writing tests
69
 *
70
 *
71
 */
72
/**
73
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
74
 */
75
public class GMLPointsLayerTest extends GPEPointsLayerTest{
76
77
        /*
78
         * (non-Javadoc)
79 11210 jorpiell
         * @see org.gvsig.gpe.writers.GPEWriterBaseTest#getFormat()
80 11178 jorpiell
         */
81 11210 jorpiell
        public String getFormat() {
82
                return "GML";
83 11178 jorpiell
        }
84
85 11210 jorpiell
        /*
86
         * (non-Javadoc)
87
         * @see org.gvsig.gpe.writers.GPEWriterBaseTest#getGPEParserName()
88
         */
89
        public String getGPEParserName() {
90
                return "org.gvsig.gpe.gml.GPEGmlParser";
91
        }
92 11265 csanchez
93
        public Class getGPEWriterHandlerClass() {
94
                // TODO Ap?ndice de m?todo generado autom?ticamente
95
                return null;
96
        }
97
98
        public Class getGPEParserClass() {
99
                // TODO Ap?ndice de m?todo generado autom?ticamente
100
                return null;
101
        }
102 11178 jorpiell
103
}