2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
layout: pattern
|
|
|
|
title: Model-View-Presenter
|
|
|
|
folder: model-view-presenter
|
2015-08-15 18:03:05 +02:00
|
|
|
permalink: /patterns/model-view-presenter/
|
2019-12-13 21:09:28 +02:00
|
|
|
categories: Architectural
|
2021-05-19 10:49:05 -06:00
|
|
|
language: en
|
2015-12-28 15:52:44 +02:00
|
|
|
tags:
|
2019-12-13 21:09:28 +02:00
|
|
|
- Decoupling
|
2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Intent
|
|
|
|
Apply a "Separation of Concerns" principle in a way that allows
|
2015-08-13 23:54:40 +02:00
|
|
|
developers to build and test user interfaces.
|
|
|
|
|
2019-12-07 20:01:13 +02:00
|
|
|
## Class diagram
|
2015-08-13 23:54:40 +02:00
|
|
|

|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Applicability
|
|
|
|
Use the Model-View-Presenter in any of the following
|
2015-08-13 23:54:40 +02:00
|
|
|
situations
|
2015-09-03 16:22:26 +02:00
|
|
|
|
2019-12-13 21:09:28 +02:00
|
|
|
* When you want to improve the "Separation of Concerns" principle in presentation logic
|
|
|
|
* When a user interface development and testing is necessary.
|
2015-09-24 12:23:02 +05:30
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Real world examples
|
2015-09-24 12:23:02 +05:30
|
|
|
|
|
|
|
* [MVP4J](https://github.com/amineoualialami/mvp4j)
|