mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-15 13:55:03 -05:00
916f168d98
* added video/subtitle file drop target in SubtitlePanel * added VideoHashSubtitleDownloadDialog
31 lines
504 B
Java
31 lines
504 B
Java
|
|
package net.sourceforge.filebot.web;
|
|
|
|
|
|
import java.net.URI;
|
|
import java.util.List;
|
|
|
|
import javax.swing.Icon;
|
|
|
|
|
|
public interface SubtitleProvider {
|
|
|
|
public List<SearchResult> search(String query) throws Exception;
|
|
|
|
|
|
public List<SubtitleDescriptor> getSubtitleList(SearchResult searchResult, String languageName) throws Exception;
|
|
|
|
|
|
public URI getSubtitleListLink(SearchResult searchResult, String languageName);
|
|
|
|
|
|
public String getName();
|
|
|
|
|
|
public URI getLink();
|
|
|
|
|
|
public Icon getIcon();
|
|
|
|
}
|