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

View differences:

OuterBoundaryIsWriter.java
49 49
 *
50 50
 * $Id$
51 51
 * $Log$
52
 * Revision 1.2  2007-04-12 10:35:04  jorpiell
52
 * Revision 1.3  2007-04-12 11:36:15  jorpiell
53
 * Added new geometry writers
54
 *
55
 * Revision 1.2  2007/04/12 10:35:04  jorpiell
53 56
 * Add the innerboundaryIs
54 57
 *
55 58
 * Revision 1.1  2007/04/12 10:23:41  jorpiell
......
64 67
	
65 68
	public static void start(Writer writer,double[] x, double[] y,
66 69
			double[] z) throws IOException{
67
		writer.write("<" + GMLTags.GML_OUTERBOUNDARYIS + ">");		
70
		writer.write("<" +GMLTags.GML_NAMESPACE + ":" + GMLTags.GML_OUTERBOUNDARYIS + ">");		
68 71
		LinearRingWriter.start(writer, x, y, z, null, null);
69 72
	}
70 73
	
71 74
	public static void end(Writer writer) throws IOException{
72 75
		LinearRingWriter.end(writer);
73
		writer.write("</" + GMLTags.GML_OUTERBOUNDARYIS + ">");		
76
		writer.write("</" + GMLTags.GML_NAMESPACE + ":" + GMLTags.GML_OUTERBOUNDARYIS + ">");		
74 77
	}
75 78
}

Also available in: Unified diff