// (c) Tuomas J. Lukka package org.nongnu.alph; /** A (possibly) temporary file providing some media. * Used by ImageSpan and PageImageScroll to provide pages. */ public interface BlockFile { /** Get the file object. */ java.io.File getFile(); /** Get the pathname of the file. */ String getFilename(); /** This file will not be used any more and may be deleted. */ void close(); }