home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Gallery
/
INTERGAL.bin
/
intergal
/
prgs
/
idv21
/
data.z
/
RandomAccessFile.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
321b
|
14 lines
import java.io.*;
public class \Name\ extends java.io.RandomAccessFile
{
public \Name\ (String AFileName, String AMode) throws IOException
{
super (AFileName, AMode);
}
public \Name\ (File AFile, String AMode) throws IOException
{
super (AFile, AMode);
}
}