A Model–view–controller (MVC) is a software architectural pattern commonly used for developing user interfaces that divide the related program logic into three interconnected elements. This is done to separate internal representations of information from the ways information is presented to and accepted from the user.
Web-D-Zine (WDZ) creates MVC compatible code. The base class interacts with the data base, thus interacting with the model, while the panel is the controller that provides two views. The form view and the display view. Having a way to generate MVC compatible code, means that you will have consistent code, that is easy to modify and easy to understand.
Â