1 2 3 4 5 6 7 8 9 10 11
package design.persistence.importexport; import java.io.File; import java.io.IOException; public interface DataHandler { void importData(File file) throws IOException; void exportData(File file) throws IOException; }