home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / RandomAccessFile.pre < prev    next >
Text File  |  1995-10-08  |  321b  |  14 lines

  1. import java.io.*;
  2.  
  3. public class \Name\ extends java.io.RandomAccessFile
  4.    {
  5.    public \Name\ (String AFileName, String AMode) throws IOException 
  6.       {
  7.       super (AFileName, AMode);
  8.       }
  9.    public \Name\ (File AFile, String AMode) throws IOException 
  10.       {
  11.       super (AFile, AMode);
  12.       }
  13.    }
  14.