![JAR search and dependency download from the Maven repository](/logo.png)
ace.data.file.handling.reader.IFileReader Maven / Gradle / Ivy
The newest version!
package ace.data.file.handling.reader;
/**
* Interface for loading data into the application
*
* @param Raw representation of the data
*/
public interface IFileReader {
/**
* Loads save file into memory
* @param filePath absolute path to file
* @return read data
*/
V loadFile(String filePath);
/**
* @return latest data read in by {@link IFileReader#loadFile(String)}
*/
V getRawData();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy