blob: e7dda3329da96992250ef764eb5efb5dc0a3c71b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package design.model;
import java.io.File;
import java.io.IOException;
public interface DataHandler {
void importPersonalData(File file) throws IOException;
void exportPersonalData(File file) throws IOException;
void importLeagueData(File file) throws IOException;
void exportLeagueData(File file) throws IOException;
}
|