John Ericksen

Results 190 comments of John Ericksen

Correct me if I'm wrong, but in your example, there would be a concrete implementation that AA would use to generate the extension class, something like this: ```java @EFragment public...

You can use the `@LayoutHandler` to specify a custom layout builder that would include the window feature code. Let me know if you need more details around this.

I missed this... I'll try to tackle the implementation this evening.

So, the question is here, should we call the super automatically or pass into the call-through method an object that can call the super, ie: Automatically calls super: client code:...

Ok, threw together an implementation on this branch: https://github.com/johncarl81/transfuse/tree/supercaller Let me know how this works for you. My open question is: do we need a SuperCallable on every call-through method?

Im not 100% convinced it will be, thus this branch. What other super methods would you like to access?

I'd call onDestroyView() a lifecycle event, not a call-through event. These can, and most of the time, call super. In this case should super.onDestoryView() be called last?

Reworking the core of transfuse allowed an implementation of the super caller. The general idea is for Transfuse generate a class in the Activity component that would have control of...

Awesome, thanks Dan. I was struggling with what should require a super call and what shouldn't... I'll need to review a bit. In terms of the super caller, yes, we...