1 50 51 package com.lowagie.text.rtf.document.output; 52 53 import java.io.IOException ; 54 import java.io.OutputStream ; 55 56 57 65 public interface RtfDataCache 66 { 67 70 public static final int CACHE_MEMORY_EFFICIENT = 3; 71 74 public static final int CACHE_MEMORY = 2; 75 78 public static final int CACHE_DISK = 1; 79 80 85 public OutputStream getOutputStream(); 86 87 93 public void writeTo(OutputStream target) throws IOException ; 94 } 95 | Popular Tags |