Statistics
| Revision:

root / trunk / libraries / libGPE / src / org / gvsig / gpe / writers / IGPEWriterHandler.java @ 12439

History | View | Annotate | Download (3.46 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: IGPEWriterHandler.java 12439 2007-07-02 10:00:46Z jorpiell $
45
 * $Log$
46
 * Revision 1.9  2007-07-02 09:57:35  jorpiell
47
 * The generated xsd schemas have to be valid
48
 *
49
 * Revision 1.5  2007/05/16 12:06:22  jorpiell
50
 * Add Deafult methods
51
 *
52
 * Revision 1.4  2007/05/07 12:57:55  jorpiell
53
 * Add some methods to manage the multigeometries
54
 *
55
 * Revision 1.3  2007/04/26 14:29:15  jorpiell
56
 * Add a getStringProperty method to the GEPDeafults
57
 *
58
 * Revision 1.2  2007/04/13 13:14:55  jorpiell
59
 * Created the base tests and add some methods to the content handler
60
 *
61
 * Revision 1.1  2007/04/13 07:17:54  jorpiell
62
 * Add the writting tests for the simple geometries
63
 *
64
 * Revision 1.2  2007/04/12 17:06:42  jorpiell
65
 * First GML writing tests
66
 *
67
 * Revision 1.1  2007/04/12 10:20:40  jorpiell
68
 * Add the writer
69
 *
70
 *
71
 */
72
/**
73
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
74
 */
75
public interface IGPEWriterHandler {
76
        
77
        public void initialize();
78
        
79
        public void close();
80
        
81
        public void startLayer(String id,String name,String description,String srs);
82
        
83
        public void endLayer();
84
        
85
        public void startBbox(String id,double[] x, double[] y, double[] z,String srs);
86
        
87
        public void endBbox();
88
        
89
        public void startElement(String name, Object value, Object type);
90
        
91
        public void endElement();
92
        
93
        public void startFeature(String id, String name);
94
        
95
        public void endFeature();
96
        
97
        public void startPoint(String id,double x, double y, double z, String srs);
98
        
99
        public void endPoint();
100
        
101
        public void startMultiPoint(String id, String srs);
102
        
103
        public void endMultiPoint();
104
        
105
        public void startLineString(String id,double[] x, double[] y, double[] z, String srs);
106
        
107
        public void endLineString();
108
        
109
        public void startMultiLineString(String id, String srs);
110
        
111
        public void endMultiLineString();
112
        
113
        public void startLinearRing(String id,double[] x, double[] y, double[] z, String srs);
114
        
115
        public void endLinearRing();
116
        
117
        public void startPolygon(String id,double[] x, double[] y, double[] z, String srs);
118
        
119
        public void endPolygon();
120
        
121
        public void startMultiPolygon(String id, String srs);
122
        
123
        public void endMultiPolygon();
124
        
125
        public void startMultiGeometry(String id, String srs);
126
        
127
        public void endMultiGeometry();
128
        
129
        public void startInnerBoundary(String id,double[] x, double[] y, double[] z, String srs);
130
        
131
        public void endInnerBoundary();
132
}