KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > za > org > coefficient > events > CoefficientEventPublisher


1 package za.org.coefficient.events;
2
3 /**
4  * Class: CoefficientEventPublisher
5  * Description: An interface for classes that publish CoefficientEvents.
6  * @author tfogwill
7  */

8 public interface CoefficientEventPublisher {
9     
10     public abstract void publishEvent(CoefficientEvent event);
11
12 }
13
Popular Tags