org.jasig.portal.utils
Interface IWriteable

All Known Implementing Classes:
WriteableOutputStreamWrapper, WriteableWriterWrapper

public interface IWriteable

An interface for common methods in Writers and OutputStreams.

Version:
$Revision: 1.6 $
Author:
Peter Kharchenko

Method Summary
 void close()
           
 void flush()
           
 void write(int i)
           
 void write(int[] iBuf)
           
 void write(int[] iBuf, int off, int len)
           
 

Method Detail

write

void write(int i)
           throws java.io.IOException
Throws:
java.io.IOException

flush

void flush()
           throws java.io.IOException
Throws:
java.io.IOException

close

void close()
           throws java.io.IOException
Throws:
java.io.IOException

write

void write(int[] iBuf,
           int off,
           int len)
           throws java.io.IOException
Throws:
java.io.IOException

write

void write(int[] iBuf)
           throws java.io.IOException
Throws:
java.io.IOException