nl.vpro.domain.subtitles.SubtitlesProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subtitles-domain Show documentation
Show all versions of subtitles-domain Show documentation
Subtitles are related to media, but are implemented completely parallel. Classes to contain, parse, and assemble subtitle objects are here.
The newest version!
package nl.vpro.domain.subtitles;
import java.util.List;
/**
* @since 8.2
*/
@FunctionalInterface
public interface SubtitlesProvider {
List list(String mid);
}