mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-10 19:35:15 -05:00
20 lines
253 B
Java
20 lines
253 B
Java
|
|
package net.filebot.ui.transfer;
|
|
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
|
|
|
|
public interface FileExportHandler {
|
|
|
|
public boolean canExport();
|
|
|
|
|
|
public void export(File file) throws IOException;
|
|
|
|
|
|
public String getDefaultFileName();
|
|
|
|
}
|