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

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

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

/**
 * This event will be sent to the AsynchronousEventListener when an 
 * asynchronous loading operation is aborted. 
 * @since MHP 1.0.1
 */
public class LoadingAbortedEvent extends AsynchronousLoadingEvent 
{
	/**
	 * Creates a LoadingAbortedEvent object.
	 *
	 * @param aDSMCCObject the DSMCCObject that generated the event.
	 */
	public LoadingAbortedEvent(DSMCCObject aDSMCCObject) { super(aDSMCCObject);}
	
	/**
	 * Returns the DSMCCObject that generated the event. 
	 *
	 * @return the DSMCCObject whose loading was aborted
         */
        public Object getSource() {return null; } 
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy