1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-01-13 23:08:05 -05:00
filebot/source/net/sourceforge/filebot/web/EpisodeListProvider.java
2012-02-13 09:54:57 +00:00

35 lines
588 B
Java

package net.sourceforge.filebot.web;
import java.net.URI;
import java.util.List;
import java.util.Locale;
import javax.swing.Icon;
public interface EpisodeListProvider {
public String getName();
public Icon getIcon();
public boolean hasSingleSeasonSupport();
public boolean hasLocaleSupport();
public List<SearchResult> search(String query, Locale locale) throws Exception;
public List<Episode> getEpisodeList(SearchResult searchResult, SortOrder order, Locale locale) throws Exception;
public URI getEpisodeListLink(SearchResult searchResult);
}