I'm trying to move my (rather large) GWT app over to MVP. I understand that in most cases I can use an Activity as a presenter, as it's associated with a single view. However, in some cases it doesn't make sense to use an Activity like this. For example, I've got some complex dialog boxes which really should be implemented as a view/presenter. However a dialog cannot be implemented as an Activity because it expects an AcceptsOneWidget container.
Also, in some cases I may need nested presenters - for example one PresenterA is associated with ViewA, but ViewA also has a "Subview" called ViewB, which in turn is associated with a PresenterB. I've done similar thing using custom MVP frameworks, but is it possible to achieve something similar with GWT Activities?
Any help would be greatly appreciated!
Thanks,
Jon