/** * */ package at.gv.egiz.pdfas.api.io; import java.io.File; /** * Tells that the IO element (DataSink or DataSource) is backed by a file in the local file system. * *
* This is a hint that may be used by PDF-AS to optimize data access. *
* * @author wprinz */ public interface FileBased { /** * Returns the File "behind" this io element. * ** This is usually used to determine the file name itself. *
* * @return Returns the File "behind" this io element. */ public File getFile (); }