CSC/ECE 517 Summer 2008/wiki2 3 kb: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 11: Line 11:
===Review of MVC sites on the Web that are best for learning MVC===
===Review of MVC sites on the Web that are best for learning MVC===


*[http://wiki.rubyonrails.org/rails/pages/MVC MVC link4]
*[http://wiki.rubyonrails.org/rails/pages/MVC MVC link1]
This link gives a clear understanding of MVC and also the application of MVC Ruby on Rails.   
This link gives a clear understanding of MVC and also the application of MVC Ruby on Rails.   


*[http://en.wikipedia.org/wiki/Model-view-controller MVC link1]
*[http://en.wikipedia.org/wiki/Model-view-controller MVC link2]
This website gives an basic overview of the MVC architecture and then talks about the implementation of MVC in various languages such as Ruby and Java Framework.
This website gives an basic overview of the MVC architecture and then talks about the implementation of MVC in various languages such as Ruby and Java Framework.


*[http://st-www.cs.uiuc.edu/users/smarch/st-docs/mvc.html MVC link2]
*[http://st-www.cs.uiuc.edu/users/smarch/st-docs/mvc.html MVC link3]
This link describes in detail the MVC framework as it existed in Smalltalk-80 v2.0.
This link describes in detail the MVC framework as it existed in Smalltalk-80 v2.0.


*[http://www.enode.com/x/markup/tutorial/mvc.html MVC link3]
*[http://www.enode.com/x/markup/tutorial/mvc.html MVC link4]
 
*[http://martinfowler.com/eaaDev/uiArchs.html MVC link5]


== ''References'' ==
== ''References'' ==
*http://ruby-uml.rubyforge.org/
*http://ruby-uml.rubyforge.org/

Revision as of 22:00, 7 July 2008

Unified Modeling Language(UML)

what is UML?

The Unified Modelling Language (UML) is a diagramming language or notation to specify, visualise and document models of Object Oriented software systems. UML is not a development method, that means it does not tell you what to do first and what to do next or how to design your system, but it helps you to visualise your design and communicate with others. UML is managed by the Object Management Group (OMG) and is the industry standard for graphically describing software.UML is designed for Object Orientated software design and has limited use for other programming paradigms.

Ruby the UML Way

  1. ruby-uml tries to trace different aspects of an existing application, which is intended to provide support for refactorisations by generating UML-graphs.
  2. ruby-uml is able to generate textual representations of the gathered informations.
  3. These representations include a picture or dot-code that can be converted to images by their corresponding applications.
  4. At this time ruby-uml is able to generate sequences and class diagrams.

Review of MVC sites on the Web that are best for learning MVC

This link gives a clear understanding of MVC and also the application of MVC Ruby on Rails.

This website gives an basic overview of the MVC architecture and then talks about the implementation of MVC in various languages such as Ruby and Java Framework.

This link describes in detail the MVC framework as it existed in Smalltalk-80 v2.0.

References