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

21 lines
335 B
Java
Raw Normal View History

package net.sourceforge.filebot.ui.rename;
import java.util.Map;
import net.sourceforge.filebot.similarity.Match;
2009-05-10 13:03:51 -04:00
public interface MatchFormatter {
public boolean canFormat(Match<?, ?> match);
public String preview(Match<?, ?> match);
public String format(Match<?, ?> match, Map<?, ?> context) throws Exception;
}