Statistics
| Revision:

root / trunk / libraries / libGPE / src / org / gvsig / gpe / GPEContentHandler.java @ 11203

History | View | Annotate | Download (4.93 KB)

1
package org.gvsig.gpe;
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: GPEContentHandler.java 11203 2007-04-13 13:14:55Z jorpiell $
45
 * $Log$
46
 * Revision 1.4  2007-04-13 13:14:55  jorpiell
47
 * Created the base tests and add some methods to the content handler
48
 *
49
 * Revision 1.3  2007/04/12 17:06:42  jorpiell
50
 * First GML writing tests
51
 *
52
 * Revision 1.2  2007/04/11 13:04:51  jorpiell
53
 * Add the srs param to the addLayer method
54
 *
55
 * Revision 1.1  2007/04/11 08:46:21  csanchez
56
 * Actualizacion protoripo libGPE
57
 *
58
 *
59
 */
60
/**
61
 * @author Carlos S?nchez Peri??n (sanchez_carper@gva.es)
62
 */
63
public abstract class GPEContentHandler implements IGPEContentHandler {
64

    
65
        public Object startLayer(Object parent, Object bBox, String id,
66
                        String name, String description,String srs) {
67
                // TODO Ap?ndice de m?todo generado autom?ticamente
68
                return null;
69
        }
70

    
71
        public void endLayer(Object layer) {
72
                // TODO Ap?ndice de m?todo generado autom?ticamente
73

    
74
        }
75
        
76
        public void addNameToLayer(Object layer,String name){
77
                
78
        }
79
        
80
        public void addDescriptionToLayer(Object layer,String description){
81
                
82
        }
83

    
84
        public Object startElement(Object parent, String name, Object value,
85
                        Object type) {
86
                // TODO Ap?ndice de m?todo generado autom?ticamente
87
                return null;
88
        }
89

    
90
        public void endElement(Object element) {
91
                // TODO Ap?ndice de m?todo generado autom?ticamente
92

    
93
        }
94

    
95
        public Object startBbox(double[] x, double[] y, double[] z, String id,
96
                        String srs) {
97
                // TODO Ap?ndice de m?todo generado autom?ticamente
98
                return null;
99
        }
100

    
101
        public void endBbox(Object bbox) {
102
                // TODO Ap?ndice de m?todo generado autom?ticamente
103

    
104
        }
105

    
106
        public Object startPoint(double x, double y, double z, String id, String srs) {
107
                // TODO Ap?ndice de m?todo generado autom?ticamente
108
                return null;
109
        }
110

    
111
        public void endPoint(Object point) {
112
                // TODO Ap?ndice de m?todo generado autom?ticamente
113

    
114
        }
115

    
116
        public Object startLineString(double[] x, double[] y, double[] z, String id,
117
                        String srs) {
118
                // TODO Ap?ndice de m?todo generado autom?ticamente
119
                return null;
120
        }
121

    
122
        public void endLineString(Object line) {
123
                // TODO Ap?ndice de m?todo generado autom?ticamente
124

    
125
        }
126

    
127
        public Object startLinearRing(double[] x, double[] y, double[] z, String id,
128
                        String srs) {
129
                // TODO Ap?ndice de m?todo generado autom?ticamente
130
                return null;
131
        }
132

    
133
        public void endLinearRing(Object linearRing) {
134
                // TODO Ap?ndice de m?todo generado autom?ticamente
135

    
136
        }
137

    
138
        public Object startPolygon(double[] x, double[] y, double[] z, String id,
139
                        String srs) {
140
                // TODO Ap?ndice de m?todo generado autom?ticamente
141
                return null;
142
        }
143

    
144
        public void endPolygon(Object polygon) {
145
                // TODO Ap?ndice de m?todo generado autom?ticamente
146

    
147
        }
148

    
149
        public void addInnerBoundary(Object polygon, Object linearRing) {
150
                // TODO Ap?ndice de m?todo generado autom?ticamente
151

    
152
        }
153

    
154
        public void addOuterBoundary(Object polygon, Object linearRing) {
155
                // TODO Ap?ndice de m?todo generado autom?ticamente
156

    
157
        }
158

    
159
        public boolean isViewInBox(Object bbox, Object view) {
160
                // TODO Ap?ndice de m?todo generado autom?ticamente
161
                return false;
162
        }
163

    
164
        public boolean isGeometryInBox(Object bbox, Object geometry) {
165
                // TODO Ap?ndice de m?todo generado autom?ticamente
166
                return false;
167
        }
168

    
169
        public void addFeature(Object layer, Object feature) {
170
                // TODO Ap?ndice de m?todo generado autom?ticamente
171

    
172
        }
173

    
174
        public void addBbox(Object item, Object bbox) {
175
                // TODO Ap?ndice de m?todo generado autom?ticamente
176

    
177
        }
178

    
179
        public void addElement(Object feature, Object element) {
180
                // TODO Ap?ndice de m?todo generado autom?ticamente
181

    
182
        }
183

    
184
        public void addGeometry(Object feature, Object geometry) {
185
                // TODO Ap?ndice de m?todo generado autom?ticamente
186

    
187
        }
188

    
189
        public Object startFeature(String name, String id) {
190
                // TODO Auto-generated method stub
191
                return null;
192
        }
193
        
194
        public void addNameToFeature(Object feature, String name){
195
                
196
        }
197
        
198
        public void endFeature(Object feature) {
199
                // TODO Auto-generated method stub
200
                
201
        }
202

    
203

    
204

    
205
}