Event.java 104 B

123456
  1. package com.poqop.document.events;
  2. public interface Event<T>
  3. {
  4. void dispatchOn(Object listener);
  5. }