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

View differences:

PolygonWriter.java
49 49
 *
50 50
 * $Id$
51 51
 * $Log$
52
 * Revision 1.1  2007-04-12 10:23:41  jorpiell
52
 * Revision 1.2  2007-04-13 13:16:00  jorpiell
53
 * Add the multiple geometries
54
 *
55
 * Revision 1.1  2007/04/12 10:23:41  jorpiell
53 56
 * Add some writers and the GPEXml parser
54 57
 *
55 58
 *
......
62 65
	public static void start(Writer writer,double[] x, double[] y,
63 66
			double[] z, String srs, String id) throws IOException{
64 67
		GeometriesWriter.startGeometry(writer, GMLTags.GML_POLYGON, id, srs);
65
		
66
		CoordinatesWriter.write(writer, x, y, z);			
68
		OuterBoundaryIsWriter.start(writer, x, y, z);
69
		OuterBoundaryIsWriter.end(writer);
67 70
	}
68 71
	
69 72
	public static void end(Writer writer) throws IOException{

Also available in: Unified diff