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

net.sf.javagimmicks.event.Event Maven / Gradle / Ivy

There is a newer version: 0.99-alpha1
Show newest version
package net.sf.javagimmicks.event;

/**
 * A generic event interface which represents events that are fired by some
 * {@link Observable} and will be reported to some {@link EventListener}s.
 * 
 * @param 
 *           the concrete {@link Event} type
 */
public interface Event>
{
   /**
    * The source {@link Observable} that fired this {@link Event}
    * 
    * @return the source of this {@link Event}
    */
   Observable getSource();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy