filebot/source/net/filebot/ui/rename/MatchFormatter.java

21 lines
305 B
Java
Raw Normal View History

2014-04-19 02:30:29 -04:00
package net.filebot.ui.rename;
import java.util.Map;
2014-04-19 02:30:29 -04:00
import net.filebot.similarity.Match;
2009-05-10 13:03:51 -04:00
public interface MatchFormatter {
2015-07-25 18:47:19 -04:00
public boolean canFormat(Match<?, ?> match);
2015-07-25 18:47:19 -04:00
public String preview(Match<?, ?> match);
2015-07-25 18:47:19 -04:00
public String format(Match<?, ?> match, Map<?, ?> context) throws Exception;
2015-07-25 18:47:19 -04:00
}