Skip to content
#

model-view-controller

The term MVC stands for Model-View-Controller. MVC is a software design pattern that separates an application's logic according to responsibilities: The model manages the application's data structure, the view manages how information is represented in the user interface, and the controller accepts input and dispatches commands to the model and the view.

Here are 113 public repositories matching this topic...

For CS276, Object Oriented Software Design, each student implemented a program for a game. I implemented Gin Rummy in Java using Model-View-Controller. The Class Diagram and State Machine Diagram are given in Dia files, the rules I implemented are given in PDF, and the schedule I made for myself to follow is given as a docx file.

  • Updated Jul 25, 2017
  • Java