Revision 11171 trunk/libraries/libGPE-GML/src/org/gvsig/gpe/gml/writer/geometries/LineStringWriter.java

View differences:

LineStringWriter.java
50 50
 *
51 51
 * $Id$
52 52
 * $Log$
53
 * Revision 1.1  2007-04-12 10:23:41  jorpiell
53
 * Revision 1.2  2007-04-12 17:06:44  jorpiell
54
 * First GML writing tests
55
 *
56
 * Revision 1.1  2007/04/12 10:23:41  jorpiell
54 57
 * Add some writers and the GPEXml parser
55 58
 *
56 59
 *
......
67 70
 */
68 71
public class LineStringWriter {
69 72
	
70
	public static void write(Writer writer,double[] x, double[] y,
73
	public static void start(Writer writer,double[] x, double[] y,
71 74
			double[] z, String srs, String id) throws IOException{
72 75
		GeometriesWriter.startGeometry(writer, GMLTags.GML_LINESTRING, id, srs);
73 76
		CoordinatesWriter.write(writer, x, y, z);		

Also available in: Unified diff