1 6 21 22 package de.schlichtherle.io.rof; 23 24 import java.io.File ; 25 import java.io.FileNotFoundException ; 26 import java.io.RandomAccessFile ; 27 28 34 public class SimpleReadOnlyFile 35 extends RandomAccessFile  36 implements ReadOnlyFile 37 { 38 public SimpleReadOnlyFile(File file) 39 throws FileNotFoundException { 40 super(file, "r"); 41 } 42 } 43 | Popular Tags |