Statistics
| Revision:

root / trunk / libraries / libGPE / src-test / org / gvsig / gpe / writers / GPEMultiPointLayerTest.java @ 11203

History | View | Annotate | Download (3.03 KB)

1
package org.gvsig.gpe.writers;
2
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
3
 *
4
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
19
 *
20
 * For more information, contact:
21
 *
22
 *  Generalitat Valenciana
23
 *   Conselleria d'Infraestructures i Transport
24
 *   Av. Blasco Ib??ez, 50
25
 *   46010 VALENCIA
26
 *   SPAIN
27
 *
28
 *      +34 963862235
29
 *   gvsig@gva.es
30
 *      www.gvsig.gva.es
31
 *
32
 *    or
33
 *
34
 *   IVER T.I. S.A
35
 *   Salamanca 50
36
 *   46005 Valencia
37
 *   Spain
38
 *
39
 *   +34 963163400
40
 *   dac@iver.es
41
 */
42
/* CVS MESSAGES:
43
 *
44
 * $Id: GPEMultiPointLayerTest.java 11203 2007-04-13 13:14:55Z jorpiell $
45
 * $Log$
46
 * Revision 1.1  2007-04-13 13:14:55  jorpiell
47
 * Created the base tests and add some methods to the content handler
48
 *
49
 *
50
 */
51
/**
52
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
53
 */
54
public abstract class GPEMultiPointLayerTest extends GPEWriterBaseTest{
55
        /*
56
         * (non-Javadoc)
57
         * @see org.gvsig.gpe.writers.GPEWriterBaseTest#readObjects()
58
         */
59
        public void readObjects() {
60
                // TODO Auto-generated method stub
61
                
62
        }
63

    
64
        /*
65
         * (non-Javadoc)
66
         * @see org.gvsig.gpe.writers.GPEWriterBaseTest#writeObjects()
67
         */
68
        public void writeObjects() {
69
                getHandler().initialize();
70
                getHandler().startLayer("1", "Multi Points", "MultiPoints layer test", "23030");
71
                getHandler().startBbox("bbox", generateRandomBBox(),
72
                                generateRandomBBox(),
73
                                generateRandomBBox(),
74
                                "23030");
75
                getHandler().endBbox();
76
                getHandler().startFeature("Spain","f1");
77
                getHandler().startElement("POPULATION", new Integer("300000"), Integer.class);
78
                getHandler().endElement();
79
                getHandler().startMultiPoint("mp1", "EPSG:23030");
80
                getHandler().startPoint("p1", 1, 1, 1, "EPSG:23030");
81
                getHandler().endPoint();                
82
                getHandler().startPoint("p2", 2, 2, 2, "EPSG:23030");
83
                getHandler().endPoint();
84
                getHandler().startPoint("p3", 3, 3, 3, "EPSG:23030");
85
                getHandler().endPoint();                
86
                getHandler().endMuliPoint();                
87
                getHandler().endFeature();
88
                getHandler().startFeature("France","f2");
89
                getHandler().startElement("POPULATION", new Integer("400000"), Integer.class);
90
                getHandler().endElement();
91
                getHandler().startMultiPoint("mp2", "EPSG:23030");
92
                getHandler().startPoint("p4", 4, 4, 4, "EPSG:23030");
93
                getHandler().endPoint();                
94
                getHandler().startPoint("p5", 5, 5, 5, "EPSG:23030");
95
                getHandler().endPoint();
96
                getHandler().endMuliPoint();                        
97
                getHandler().endFeature();
98
                getHandler().endLayer();
99
                getHandler().close();        
100
        }
101

    
102
}