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

org.dvb.dsmcc.NPTRateChangeEvent Maven / Gradle / Ivy

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

/**
 * Sent only when the rate of an NPT time-base changes value.
 * @since MHP 1.0.1
 */

public class NPTRateChangeEvent extends java.util.EventObject {
	/**
	 * Construct an event.
	 * @param source the stream whose rate changed
	 * @param rate the new rate of that stream immediately following the change
	 */
	public NPTRateChangeEvent( DSMCCStream source, NPTRate rate ){super( (Object)source);}
	
	/**
	 * Return the stream whose rate changed.
	 * @return the DSMCCStream object on which the rate change has occurred.
	 */
	public java.lang.Object getSource() {return null;}

	/**
	 * Return the new rate of the stream immediately after the change.
	 * @return a NPTRate object encapsulating the new rate
	 */
	public NPTRate getRate() { return null;}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy