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

View differences:

BoundedByWriter.java
49 49
 *
50 50
 * $Id$
51 51
 * $Log$
52
 * Revision 1.1  2007-04-12 11:36:15  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 11:36:15  jorpiell
53 56
 * Added new geometry writers
54 57
 *
55 58
 *
......
60 63
public class BoundedByWriter {
61 64
	public static void start(Writer writer,double[] x, double[] y,
62 65
			double[] z, String srs, String id) throws IOException{
66
		writer.write("\n");
63 67
		writer.write("<" + GMLTags.GML_NAMESPACE + ":" + GMLTags.GML_BOUNDEDBY + ">");	
64 68
		BoxWriter.start(writer, x, y, z, srs, id);
65 69
	}
66 70
	
67 71
	public static void end(Writer writer) throws IOException{
68 72
		BoxWriter.end(writer);
73
		writer.write("\n");
69 74
		writer.write("</" + GMLTags.GML_NAMESPACE + ":" + GMLTags.GML_BOUNDEDBY + ">");	
70 75
	}
71 76
}

Also available in: Unified diff