This metadata allows to forward the method call to any member of the class.
@Forward( filterModel.setFilter ) public function setFilter( filter : Filter ) : Void { }
@Forward( model.startItemEdition ) public function editItem( id : String ) : Void {}
@Forward( model.removeItem ) public function removeItem( id : String ) : Void {}
To allow that, you just need to implement IForwarder
This metadata allows to forward the method call to any member of the class.
To allow that, you just need to implement
IForwarder