com.fernsroth.easyio
Interface IOutputStream

All Known Subinterfaces:
IRandomAccessSource
All Known Implementing Classes:
EasyIORandomAccessFile, RandomAccessByteArray

public interface IOutputStream

Author:
Joseph M. Ferner (Near Infinity Corporation)

Method Summary
 void write(byte[] buffer)
          writes data.
 void write(byte[] buffer, int start, int length)
          writes data.
 void write(int b)
           
 

Method Detail

write

void write(int b)
           throws java.io.IOException
Parameters:
b - the data.
Throws:
java.io.IOException

write

void write(byte[] buffer)
           throws java.io.IOException
writes data.

Parameters:
buffer - the data to write.
Throws:
java.io.IOException

write

void write(byte[] buffer,
           int start,
           int length)
           throws java.io.IOException
writes data.

Parameters:
buffer - the data to write.
start - the start.
length - the length.
Throws:
java.io.IOException


Copyright © 2006 null. All Rights Reserved.