1 29 30 package com.caucho.xml.stream.events; 31 32 import javax.xml.stream.XMLStreamException; 33 import javax.xml.stream.events.EndDocument; 34 import java.io.Writer ; 35 36 public class EndDocumentImpl extends XMLEventImpl implements EndDocument { 37 public int getEventType() 38 { 39 return END_DOCUMENT; 40 } 41 42 public void writeAsEncodedUnicode(Writer writer) 43 throws XMLStreamException 44 { 45 } 47 } 48 49 | Popular Tags |