org.dvb.dsmcc.NPTStatusEvent Maven / Gradle / Ivy
The 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;}
}