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

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

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

/** 
 * The base class for all other events relating to changes in video format
 */
public abstract class VideoFormatEvent extends java.util.EventObject
{
	/**
	 * Constructor
	 *
	 * @param source the source of the event. The platform shall always
         * pass in the JMF Player presenting the video whose format changed.
	 */
	public VideoFormatEvent(Object source)
	{

		super(source);
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy