/**
 * 
 */
package at.gv.egiz.pdfas.impl.input;

import java.io.File;

/**
 * Interface that reveals the underlying data file.
 * 
 * @author wprinz
 */
public interface FileBased
{
  /**
   * Returns the underlying data file.
   * @return Returns the underlying data file.
   */
  public File getFile();
}