1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/source/net/filebot/RenameAction.java

15 lines
182 B
Java
Raw Normal View History

2014-04-19 02:30:29 -04:00
package net.filebot;
import java.io.File;
public interface RenameAction {
2015-07-25 18:47:19 -04:00
File rename(File from, File to) throws Exception;
2015-07-25 18:47:19 -04:00
default boolean canRevert() {
return true;
}
}