at.spardat.xma.util
Class ByteArray.ByteArrayOS

java.lang.Object
  extended byjava.io.OutputStream
      extended byat.spardat.xma.util.ByteArray.ByteArrayOS
Enclosing class:
ByteArray

public class ByteArray.ByteArrayOS
extends java.io.OutputStream

Inner nested class to write to the end of the buffer by using an OutputStream interface.


Constructor Summary
ByteArray.ByteArrayOS()
           
 
Method Summary
 void write(byte[] b)
           
 void write(byte[] b, int off, int len)
           
 void write(int b)
           
 
Methods inherited from class java.io.OutputStream
close, flush
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ByteArray.ByteArrayOS

public ByteArray.ByteArrayOS()
Method Detail

write

public void write(int b)
           throws java.io.IOException
Throws:
java.io.IOException
See Also:
OutputStream.write(int)

write

public void write(byte[] b)
           throws java.io.IOException
Throws:
java.io.IOException
See Also:
OutputStream.write(byte[])

write

public void write(byte[] b,
                  int off,
                  int len)
           throws java.io.IOException
Throws:
java.io.IOException
See Also:
OutputStream.write(byte[], int, int)