When using the MVP template, as described here in GWT, how do you create a presenter associated with a view when the view is part of another uibinder-view.
You create the instance yourself through:
@UiFactory method:
@UiFactory
@UiFactory public Widget getMyView(){ // here you instantiate your view & activity ... // your view contais a widget or is a widget return widget }
@UiField(provided=true) :
@UiField(provided=true)
@UiField(provided=true) public Widget myView; // then instantiate it in constructor