Revision 19367 trunk/libraries/libGPE-KML/src/org/gvsig/gpe/kml/writer/v21/features/FeatureWriter.java

View differences:

FeatureWriter.java
4 4

  
5 5
import org.gvsig.gpe.kml.KmlTags;
6 6
import org.gvsig.gpe.kml.writer.GPEKmlWriterHandlerImplementor;
7
import org.gvsig.gpe.xml.writer.Writer;
7
import org.gvsig.gpe.xml.writer.IWriter;
8 8

  
9 9
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
10 10
 *
......
88 88
	 * Feature type
89 89
	 * @throws IOException
90 90
	 */
91
	public void start(Writer writer, GPEKmlWriterHandlerImplementor handler, String id, String tagName) throws IOException{
91
	public void start(IWriter writer, GPEKmlWriterHandlerImplementor handler, String id, String tagName) throws IOException{
92 92
		writer.write("\n");
93 93
		writer.write("<" + tagName);
94 94
		if (id != null){
......
108 108
	 * Feature type
109 109
	 * @throws IOException
110 110
	 */
111
	public void end(Writer writer, GPEKmlWriterHandlerImplementor hanlder, String tagName) throws IOException{
111
	public void end(IWriter writer, GPEKmlWriterHandlerImplementor hanlder, String tagName) throws IOException{
112 112
		writer.write("\n");
113 113
		writer.write("</" + tagName + ">");
114 114
	}

Also available in: Unified diff