Do you have any model notation that you use for MVC?

Hopefully (but not necessarily) one that is language or structure independent?

0


source to share


2 answers


there is a simple model at: http://en.wikipedia.org/wiki/Model-view-controller

you can find the uml model diagram and take a look here: http://www.dofactory.com/Patterns/PatternObserver.aspx . the controller is sometimes in the gui.



there are several flavors of mvc: http://en.wikipedia.org/wiki/Presentation-abstraction-control , <a3>

+1


source


I am using one of my own designs:

  • square for the model (M - square letter) - squares also look like tables
  • circle for controller (C is round letter) - circles indicate that controllers are for "flow", they glue the model and scan together
  • triangle for View, point below (V is a triangular letter)


This is for when I make a Visio type diagram. This simple mnemonic makes it easy to remember.

+1


source







All Articles