1 16 19 package com.sun.org.apache.xml.internal.serializer; 20 21 import java.io.IOException ; 22 23 49 interface WriterChain 50 { 51 52 public void write(int val) throws IOException ; 53 54 public void write(char[] chars) throws IOException ; 55 56 public void write(char[] chars, int start, int count) throws IOException ; 57 58 public void write(String chars) throws IOException ; 59 60 public void write(String chars, int start, int count) throws IOException ; 61 62 public void flush() throws IOException ; 63 64 public void close() throws IOException ; 65 66 73 public java.io.Writer getWriter(); 74 75 79 public java.io.OutputStream getOutputStream(); 80 } 81 | Popular Tags |