/src/kilim/EventSubscriber.java

http://github.com/kilim/kilim · Java · 7 lines · 4 code · 2 blank · 1 comment · 0 complexity · c867e99bbb0f2fef546d3bc914c6b004 MD5 · raw file

  1. // Copyright 2006 by sriram - offered under the terms of the MIT License
  2. package kilim;
  3. public interface EventSubscriber {
  4. void onEvent(EventPublisher ep, Event e);
  5. }