By: Rudy Fink
|
|||
|
This pattern is primarily used in user interfaces. It allows an abstraction of the components of a GUI to support easy development, maintenance, and extensibility. The MVC pattern attempts to address the right way to do GUIs. First we need some definitions: Model The program itself (data and application) View Input and output of the program that interacts with the user (graphical display) Controller Links views and models. Function:
Why:
|