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

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

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

/**
 * Sent when an MHP terminal detects a change of status in the NPT of a stream.
 * @since MHP 1.0.1
 */

public abstract class NPTStatusEvent extends java.util.EventObject {
	/**
	 * Construct an event.
	 * @param source the stream whose NPT status changed
	 */
	public NPTStatusEvent( DSMCCStream source ){ super( (Object) source);}
	/**
	 * Return the stream whose NPT status changed.
	 *
	 * @return the DSMCCStream whose status changed
	 */
	public Object getSource(){return null;}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy