net.sf.javagimmicks.event.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
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