![JAR search and dependency download from the Maven repository](/logo.png)
com.github.dnbn.submerge.api.subtitle.common.TimedTextFile 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.Set;
/**
* Object that represents a text file containing timed lines
*/
public interface TimedTextFile extends Serializable {
/**
* Get the filename
*
* @return the filename
*/
String getFileName();
/**
* Set the filename
*
* @param fileName: the filename
*/
void setFileName(String fileName);
/**
* Get the timed lines
*
* @return lines
*/
Set extends TimedLine> getTimedLines();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy