Statistics
| Revision:

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

History | View | Annotate | Download (4.59 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 11171 2007-04-12 17:06:44Z jorpiell $
45
 * $Log$
46
 * Revision 1.3  2007-04-12 17:06:42  jorpiell
47
 * First GML writing tests
48
 *
49
 * Revision 1.2  2007/04/11 13:04:51  jorpiell
50
 * Add the srs param to the addLayer method
51
 *
52
 * Revision 1.1  2007/04/11 08:46:21  csanchez
53
 * Actualizacion protoripo libGPE
54
 *
55
 *
56
 */
57
/**
58
 * @author Carlos S?nchez Peri??n (sanchez_carper@gva.es)
59
 */
60
public abstract class GPEContentHandler implements IGPEContentHandler {
61

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

    
68
        public void endLayer(Object layer) {
69
                // TODO Ap?ndice de m?todo generado autom?ticamente
70

    
71
        }
72

    
73
        public Object startElement(Object parent, String name, Object value,
74
                        Object type) {
75
                // TODO Ap?ndice de m?todo generado autom?ticamente
76
                return null;
77
        }
78

    
79
        public void endElement(Object element) {
80
                // TODO Ap?ndice de m?todo generado autom?ticamente
81

    
82
        }
83

    
84
        public Object startBbox(double[] x, double[] y, double[] z, String id,
85
                        String srs) {
86
                // TODO Ap?ndice de m?todo generado autom?ticamente
87
                return null;
88
        }
89

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

    
93
        }
94

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

    
100
        public void endPoint(Object point) {
101
                // TODO Ap?ndice de m?todo generado autom?ticamente
102

    
103
        }
104

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

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

    
114
        }
115

    
116
        public Object startLinearRing(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 endLinearRing(Object linearRing) {
123
                // TODO Ap?ndice de m?todo generado autom?ticamente
124

    
125
        }
126

    
127
        public Object startPolygon(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 endPolygon(Object polygon) {
134
                // TODO Ap?ndice de m?todo generado autom?ticamente
135

    
136
        }
137

    
138
        public void addInnerBoundary(Object polygon, Object linearRing) {
139
                // TODO Ap?ndice de m?todo generado autom?ticamente
140

    
141
        }
142

    
143
        public void addOuterBoundary(Object polygon, Object linearRing) {
144
                // TODO Ap?ndice de m?todo generado autom?ticamente
145

    
146
        }
147

    
148
        public boolean isViewInBox(Object bbox, Object view) {
149
                // TODO Ap?ndice de m?todo generado autom?ticamente
150
                return false;
151
        }
152

    
153
        public boolean isGeometryInBox(Object bbox, Object geometry) {
154
                // TODO Ap?ndice de m?todo generado autom?ticamente
155
                return false;
156
        }
157

    
158
        public void addFeature(Object layer, Object feature) {
159
                // TODO Ap?ndice de m?todo generado autom?ticamente
160

    
161
        }
162

    
163
        public void addBbox(Object item, Object bbox) {
164
                // TODO Ap?ndice de m?todo generado autom?ticamente
165

    
166
        }
167

    
168
        public void addElement(Object feature, Object element) {
169
                // TODO Ap?ndice de m?todo generado autom?ticamente
170

    
171
        }
172

    
173
        public void addGeometry(Object feature, Object geometry) {
174
                // TODO Ap?ndice de m?todo generado autom?ticamente
175

    
176
        }
177

    
178
        public void endFeature(Object feature) {
179
                // TODO Auto-generated method stub
180
                
181
        }
182

    
183
        public Object startFeature(String name, String id) {
184
                // TODO Auto-generated method stub
185
                return null;
186
        }
187

    
188
}