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

21 lines
305 B
Java

package net.filebot.ui.rename;
import java.util.Map;
import net.filebot.similarity.Match;
public interface MatchFormatter {
public boolean canFormat(Match<?, ?> match);
public String preview(Match<?, ?> match);
public String format(Match<?, ?> match, Map<?, ?> context) throws Exception;
}