1 57 58 59 package com.sun.org.apache.xml.internal.serialize; 60 61 62 import java.io.IOException ; 63 import java.io.OutputStream ; 64 import java.io.Writer ; 65 66 import org.xml.sax.ContentHandler ; 67 import org.xml.sax.DocumentHandler ; 68 69 70 102 public interface Serializer 103 { 104 105 106 111 public void setOutputByteStream(OutputStream output); 112 113 114 119 public void setOutputCharStream( Writer output ); 120 121 122 131 public void setOutputFormat( OutputFormat format ); 132 133 134 139 public DocumentHandler asDocumentHandler() 140 throws IOException ; 141 142 143 148 public ContentHandler asContentHandler() 149 throws IOException ; 150 151 152 157 public DOMSerializer asDOMSerializer() 158 throws IOException ; 159 160 161 } 162 163 164 165 166 167 | Popular Tags |