Moved Model-View-Presenter pattern under Presentation Tier Patterns.

This commit is contained in:
Ilkka Seppala 2015-04-04 21:12:43 +03:00
parent e136e6a47b
commit d0feb3c8d5

View File

@ -37,7 +37,6 @@ Structural patterns are concerned with how classes and objects are composed to f
* [Flyweight](#flyweight)
* [Proxy](#proxy)
* [Service Locator](#service-locator)
* [Model-View-Presenter](#model-view-presenter)
* [Servant](#servant)
* [Event Aggregator](#event-aggregator)
@ -66,6 +65,7 @@ Behavioral patterns are concerned with algorithms and the assignment of responsi
Presentation Tier patterns are the top-most level of the application, this is concerned with translating tasks and results to something the user can understand.
* [Intercepting Filter](#intercepting-filter)
* [Model-View-Presenter](#model-view-presenter)
## <a name="abstract-factory">Abstract Factory</a> [&#8593;](#list-of-design-patterns)