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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy