com.github.dnbn.submerge.api.subtitle.common.TimedLine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of submerge-api Show documentation
Show all versions of submerge-api Show documentation
Library to manage SRT and ASS subtitles
The newest version!
package com.github.dnbn.submerge.api.subtitle.common;
import java.io.Serializable;
import java.util.Comparator;
import java.util.List;
/**
* Simple object that contains a text line with a time
*
*/
public interface TimedLine extends Serializable, Comparable, Comparator {
/**
* Get the text lines
*
* @return textLines
*/
List getTextLines();
/**
* Get the timed object
*
* @return the time
*/
TimedObject getTime();
}