Java XMLStreamWriter writeFooter(XMLStreamWriter w)

Here you can find the source of writeFooter(XMLStreamWriter w)

Description

write Footer

License

Apache License

Declaration

public static void writeFooter(XMLStreamWriter w) throws XMLStreamException 

Method Source Code


//package com.java2s;
//  Licensed under the Apache License, Version 2.0 (the "License");

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;

public class Main {
    public static void writeFooter(XMLStreamWriter w) throws XMLStreamException {
        w.writeEndElement(); // Folder
        w.writeEndElement(); // Document
        w.writeEndElement(); // kml
    }//from  w w w.j  av  a2s  . c  o  m
}

Related

  1. writeCharactersOrCDATA(XMLStreamWriter xsw, String string)
  2. writeColorConfig(XMLStreamWriter writer, Boolean enabled, String error, String warn, String success, String required, String batch)
  3. writeComment(String comment, XMLStreamWriter xmlsw)
  4. writeEndElement(XMLStreamWriter out, QName name)
  5. writeFloat(String name, float value, XMLStreamWriter writer)
  6. writeIndent(XMLStreamWriter xmlsw, String indent)
  7. writeInsertPos(XMLStreamWriter w, boolean isBefore, int[] pos)
  8. writePath(XMLStreamWriter w, Supplier cssClass, Supplier fill, Supplier stroke, Supplier path)
  9. writeSimpleTag(XMLStreamWriter writer, String tag, Object value, boolean asCData)