eyeem/decorator

investigate before super call

ronaldoeyeem opened this issue · 0 comments

It could be possible to tell on the blueprint that you want your decorators to be called before super from the decorated class, something like:

// blueprint
@beforeSuper
@Override public void someMethod(){}
// decorated class
@Override public void someMethod(){
   decorators.someMethod();
   super.someMethod();
}

related: #22