Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.