All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dnbn.submerge.api.subtitle.common.TimedTextFile Maven / Gradle / Ivy

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 getTimedLines();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy