Normand Briere
2019-07-29 c6c3f0948bd31603547ef8ce47a7784a9a4d55c2
1
2
3
4
5
6
7
8
9
package timeflow.format.file;
 
import java.io.File;
import timeflow.data.db.ActDB;
 
public interface Import {
   public String getName();
   public ActDB importFile(File file) throws Exception;
}