Ari
Ari

Reputation: 4201

Clarifying Understanding of Presenter Interface

After reading Large scale application development and MVP, I'm a bit unclear on the Presenter interface and I'd appreciate help in clarifying my understanding. Specifically I'm unclear as to whether each Presenter is supposed to have it's own Presenter Interface or is there supposed to be a universal Presenter interface, which all Presenters then implement?

Upvotes: 3

Views: 109

Answers (1)

maneesh
maneesh

Reputation: 1701

It should be one universal Presenter interface shared by the PresenterImpl classes.

Upvotes: 2

Related Questions