00001 package org.gridlab.gat.io.cpi;
00002
00003 import java.io.FileNotFoundException;
00004
00005 import org.gridlab.gat.GATContext;
00006 import org.gridlab.gat.Preferences;
00007 import org.gridlab.gat.io.File;
00008 import org.gridlab.gat.io.RandomAccessFile;
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 public abstract class RandomAccessFileCpi extends RandomAccessFile {
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 protected RandomAccessFileCpi(GATContext gatContext, Preferences preferences,
00036 File file, String mode) throws FileNotFoundException {
00037 super(gatContext, preferences, file, mode);
00038 }
00039 }