home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / ByteArrayOutputStream.java < prev    next >
Text File  |  1998-09-08  |  476b  |  30 lines

  1. package com.symantec.itools.io;
  2.  
  3.  
  4. /**
  5.  * @author Symantec Internet Tools Division
  6.  * @version 1.0
  7.  * @since VCafe 3.0
  8.  */
  9.  
  10. public class ByteArrayOutputStream 
  11.     extends java.io.ByteArrayOutputStream
  12. {
  13.     public ByteArrayOutputStream()
  14.     {
  15.         super();
  16.     }
  17.     
  18.     public ByteArrayOutputStream( int i )
  19.     {
  20.         super( i );
  21.     }
  22.  
  23.     /**
  24.      * @since VCafe 3.0
  25.      */
  26.     public byte[] getBuf()
  27.     {
  28.         return buf;
  29.     }
  30. }