1 17 18 19 20 package org.apache.fop.pdf; 21 22 import java.io.OutputStream ; 23 import java.io.IOException ; 24 25 31 public interface StreamCache { 32 33 40 OutputStream getOutputStream() throws IOException ; 41 42 47 void write(byte[] data) throws IOException ; 48 49 56 int outputContents(OutputStream out) throws IOException ; 57 58 64 int getSize() throws IOException ; 65 66 71 void clear() throws IOException ; 72 } 73 74 | Popular Tags |