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

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

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

 /**
  * This event indicates that the asynchronous loading was 
  * successful.
  */

public class SuccessEvent extends AsynchronousLoadingEvent {
	/**
	 * Creates a SuccessEvent object.
         *
         * @param o the DSMCCObject which was successfully loaded.
         */
	public SuccessEvent (DSMCCObject o) {super(o);}
	
   /** 
    * Returns the DSMCCObject which was successfully loaded.
    * 
    * @return the loaded DSMCCObject
    */
    public Object getSource () {return null;}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy