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

View differences:

GPEContentHandler.java
43 43
 *
44 44
 * $Id$
45 45
 * $Log$
46
 * Revision 1.3  2007-04-12 17:06:42  jorpiell
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
47 50
 * First GML writing tests
48 51
 *
49 52
 * Revision 1.2  2007/04/11 13:04:51  jorpiell
......
69 72
		// TODO Ap?ndice de m?todo generado autom?ticamente
70 73

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

  
73 84
	public Object startElement(Object parent, String name, Object value,
74 85
			Object type) {
......
102 113

  
103 114
	}
104 115

  
105
	public Object startLineString(double x, double y, double z, String id,
116
	public Object startLineString(double[] x, double[] y, double[] z, String id,
106 117
			String srs) {
107 118
		// TODO Ap?ndice de m?todo generado autom?ticamente
108 119
		return null;
......
113 124

  
114 125
	}
115 126

  
116
	public Object startLinearRing(double x, double y, double z, String id,
127
	public Object startLinearRing(double[] x, double[] y, double[] z, String id,
117 128
			String srs) {
118 129
		// TODO Ap?ndice de m?todo generado autom?ticamente
119 130
		return null;
......
124 135

  
125 136
	}
126 137

  
127
	public Object startPolygon(double x, double y, double z, String id,
138
	public Object startPolygon(double[] x, double[] y, double[] z, String id,
128 139
			String srs) {
129 140
		// TODO Ap?ndice de m?todo generado autom?ticamente
130 141
		return null;
......
175 186

  
176 187
	}
177 188

  
178
	public void endFeature(Object feature) {
189
	public Object startFeature(String name, String id) {
179 190
		// TODO Auto-generated method stub
191
		return null;
192
	}
193
	
194
	public void addNameToFeature(Object feature, String name){
180 195
		
181 196
	}
182

  
183
	public Object startFeature(String name, String id) {
197
	
198
	public void endFeature(Object feature) {
184 199
		// TODO Auto-generated method stub
185
		return null;
200
		
186 201
	}
187 202

  
203

  
204

  
188 205
}

Also available in: Unified diff