Statistics
| Revision:

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

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

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

    
65
        public void endLayer(Object layer) {
66
                // TODO Ap?ndice de m?todo generado autom?ticamente
67

    
68
        }
69

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

    
76
        public void endElement(Object element) {
77
                // TODO Ap?ndice de m?todo generado autom?ticamente
78

    
79
        }
80

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

    
87
        public void endBbox(Object bbox) {
88
                // TODO Ap?ndice de m?todo generado autom?ticamente
89

    
90
        }
91

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

    
97
        public void endPoint(Object point) {
98
                // TODO Ap?ndice de m?todo generado autom?ticamente
99

    
100
        }
101

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

    
108
        public void endLineString(Object line) {
109
                // TODO Ap?ndice de m?todo generado autom?ticamente
110

    
111
        }
112

    
113
        public Object startLinearRing(double x, double y, double z, String id,
114
                        String srs) {
115
                // TODO Ap?ndice de m?todo generado autom?ticamente
116
                return null;
117
        }
118

    
119
        public void endLinearRing(Object linearRing) {
120
                // TODO Ap?ndice de m?todo generado autom?ticamente
121

    
122
        }
123

    
124
        public Object startPolygon(double x, double y, double z, String id,
125
                        String srs) {
126
                // TODO Ap?ndice de m?todo generado autom?ticamente
127
                return null;
128
        }
129

    
130
        public void endPolygon(Object polygon) {
131
                // TODO Ap?ndice de m?todo generado autom?ticamente
132

    
133
        }
134

    
135
        public void addInnerBoundary(Object polygon, Object linearRing) {
136
                // TODO Ap?ndice de m?todo generado autom?ticamente
137

    
138
        }
139

    
140
        public void addOuterBoundary(Object polygon, Object linearRing) {
141
                // TODO Ap?ndice de m?todo generado autom?ticamente
142

    
143
        }
144

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

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

    
155
        public void addFeature(Object layer, Object feature) {
156
                // TODO Ap?ndice de m?todo generado autom?ticamente
157

    
158
        }
159

    
160
        public void addBbox(Object item, Object bbox) {
161
                // TODO Ap?ndice de m?todo generado autom?ticamente
162

    
163
        }
164

    
165
        public void addElement(Object feature, Object element) {
166
                // TODO Ap?ndice de m?todo generado autom?ticamente
167

    
168
        }
169

    
170
        public void addGeometry(Object feature, Object geometry) {
171
                // TODO Ap?ndice de m?todo generado autom?ticamente
172

    
173
        }
174

    
175
}