Home | History | Annotate | Download | only in mime4j

Lines Matching full:inputstream

22 import java.io.InputStream;
26 * InputStream that shields its underlying input stream from
32 public class CloseShieldInputStream extends InputStream {
35 * Underlying InputStream
37 private InputStream is;
39 public CloseShieldInputStream(InputStream is) {
43 public InputStream getUnderlyingStream() {
48 * @see java.io.InputStream#read()
56 * @see java.io.InputStream#available()
65 * Set the underlying InputStream to null
121 * Check if the underlying InputStream is null. If so throw an Exception
123 * @throws IOException if the underlying InputStream is null