Guest User

Untitled

a guest
Sep 23rd, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Event<L> {
  2. public void notify(L listener);
  3. }
  4.  
  5. class EventManager
  6. {
  7. public <L> void subscribe(Class<Event<L>> event, L listener);
  8. public <L> void notify(Event<L> event);
  9. }
Add Comment
Please, Sign In to add comment