Home | History | Annotate | Download | only in shared

Lines Matching refs:file

4 // you may not use this file except in compliance with the License.
17 import java.io.File;
28 * Argument for {@link RandomAccessFileInputStream#RandomAccessFileInputStream(File, long, long)}.
30 private final File file;
33 * Argument for {@link RandomAccessFileInputStream#RandomAccessFileInputStream(File, long, long)}.
38 * Argument for {@link RandomAccessFileInputStream#RandomAccessFileInputStream(File, long, long)}.
45 * @param file the file to use in {@link #newStream()}
49 public RandomAccessFileInputStreamFactory(File file, long rangeOffset, long rangeLength) {
50 this.file = file;
57 return new RandomAccessFileInputStream(file, rangeOffset, rangeLength);