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

org.dvb.media.SubtitleNotAvailableEvent Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.dvb.media;

import org.davic.media.SubtitlingLanguageControl;

/**
 * Inform an application that a subtitle stream has vanished from the network.
 * This event is not generated on service selection or other forms of 'zapping'. 
 * Its generation is restricted to changes in the composition of the subtitle 
 * aspects of the same broadcast stream.
 */

public class SubtitleNotAvailableEvent
		extends java.util.EventObject {
	/**
	 * Constructor.
	 *
	 * @param source the source of the event. The platform shall always pass
         * in the JMF player presenting the subtitles.
	 */

	public SubtitleNotAvailableEvent(Object source)
	{
		super(source);
	}

	/**
	 * Return the source of the event.
	 *
	 * @return the source of the event. This shall be the JMF player passed
         * in to the constructor of the event.
	 */
	public java.lang.Object getSource()
	{
		return null;
	}
} 






© 2015 - 2024 Weber Informatics LLC | Privacy Policy