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 not shure if I realy understood MVP in the context of composition. Lets say I've got a MainView which is a composite of ViewA and ViewB.

I've seen several examples where the View creates the presenter. Now here's my Problem, i'm not realy shure who should create whom.

Should the MainView create the MainPresenter which is a composite of APresenter and BPresenter, or should each view create its own presenter.

share|improve this question

1 Answer

If MainView is just a container for both ViewA and ViewB, then it does not need its own presenter, and the sub-views can continue using their individual default presenters.

However, if the MainView also modifies the sub-views behavior, it needs to create a composite presenter and inject it for the sub-views to use instead of their default presenters.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.