Guest User

Untitled

a guest
Jan 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. @Decorates
  2. abstract class BarEventDecorator implements Event<Bar>{
  3.  
  4. @Inject @Delegate @Baz Event<Bar> d;
  5.  
  6. void fire(Bar bar) {
  7. d.fire(bar);
  8. }
  9.  
  10. }
Add Comment
Please, Sign In to add comment