Statistics
| Revision:

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

History | View | Annotate | Download (4.22 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 11121 2007-04-11 08:46:21Z csanchez $
45
 * $Log$
46
 * Revision 1.1  2007-04-11 08:46:21  csanchez
47
 * Actualizacion protoripo libGPE
48
 *
49
 *
50
 */
51
/**
52
 * @author Carlos S?nchez Peri??n (sanchez_carper@gva.es)
53
 */
54
public abstract class GPEContentHandler implements IGPEContentHandler {
55

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

    
62
        public void endLayer(Object layer) {
63
                // TODO Ap?ndice de m?todo generado autom?ticamente
64

    
65
        }
66

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

    
73
        public void endElement(Object element) {
74
                // TODO Ap?ndice de m?todo generado autom?ticamente
75

    
76
        }
77

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

    
84
        public void endBbox(Object bbox) {
85
                // TODO Ap?ndice de m?todo generado autom?ticamente
86

    
87
        }
88

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

    
94
        public void endPoint(Object point) {
95
                // TODO Ap?ndice de m?todo generado autom?ticamente
96

    
97
        }
98

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

    
105
        public void endLineString(Object line) {
106
                // TODO Ap?ndice de m?todo generado autom?ticamente
107

    
108
        }
109

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

    
116
        public void endLinearRing(Object linearRing) {
117
                // TODO Ap?ndice de m?todo generado autom?ticamente
118

    
119
        }
120

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

    
127
        public void endPolygon(Object polygon) {
128
                // TODO Ap?ndice de m?todo generado autom?ticamente
129

    
130
        }
131

    
132
        public void addInnerBoundary(Object polygon, Object linearRing) {
133
                // TODO Ap?ndice de m?todo generado autom?ticamente
134

    
135
        }
136

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

    
140
        }
141

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

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

    
152
        public void addFeature(Object layer, Object feature) {
153
                // TODO Ap?ndice de m?todo generado autom?ticamente
154

    
155
        }
156

    
157
        public void addBbox(Object item, Object bbox) {
158
                // TODO Ap?ndice de m?todo generado autom?ticamente
159

    
160
        }
161

    
162
        public void addElement(Object feature, Object element) {
163
                // TODO Ap?ndice de m?todo generado autom?ticamente
164

    
165
        }
166

    
167
        public void addGeometry(Object feature, Object geometry) {
168
                // TODO Ap?ndice de m?todo generado autom?ticamente
169

    
170
        }
171

    
172
}