Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Model-View-Presenter

You are here: irt.org | FOLDOC | Model-View-Presenter

<programming> (MVP) A user interface architectural pattern where functions are separated between the model, view and presenter.

The model defines the data to be displayed or otherwise acted upon in the user interface.

The view displays data from the model and routes user commands (events) to the presenter to act upon that data.

The presenter retrieves data from the model and displays it in the view.

The implementation of MVP can vary as to how much presentation logic is handled by the presenter and the view. In a web application most presentation logic is usually in the view which runs in the web browser.

MVP is one of the MV* variations of the MVC pattern.

(2014-11-27)

Nearby terms: modelling language « Modelsim « Model-View-Controller « Model-View-Presenter » modem » MODEM7 » moderator

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb