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

From Expertiza_Wiki
Jump to navigation Jump to search
Line 50: Line 50:


===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===
1.[http://en.wikipedia.org/wiki/Model-view-controller MVC link1]
#[http://en.wikipedia.org/wiki/Model-view-controller MVC link1]
2.[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 link2]
#[http://www.enode.com/x/markup/tutorial/mvc.html MVC link3]


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

Revision as of 16:36, 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 controlled 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.

Java the UML Way

The goal is to have a lightweight client browser at the front end sending requests to a Web server, which then acts as a broker in a container product that implements the application's business rules. The Web server uses servlets and JSPs to intercept the requests. For the business rules, alternate solution strategies involving JavaBeans and EJBs with Bean-managed/container-managed persistence are discussed, implemented, and compared.

Although the application is simple, it makes use of a core set of UML diagrams and the Java framework.

example: The Case

  • To renovate an apartment:
  • How much paint, or wallpaper, will you need for a wall? Or how much flooring?
  • Here: A little program calculating the area of a surface, e.g. afloor or a wall.
  • We'll work with this case throughout the book. At last we'll have a useful program with graphical user interface (Fig. 15.8)
  • Basic questions when solving a programming problem:
  • utput data: What do we expect to get? What will the program display to theuser?
  • Input data: What has the user to input for the program to produce the given output?

In this case:

  • Output data: the area in square meters
  • Input data: length and width

Example Run: Length: 5.8 m Height: 2.4 m The area of the wall is 13.92 square meters.

Unfortunately, it is rather difficult to read data in to a program in Java. The Source Code

class WallCalculations{public static void main(String[] args)
 {
double length = 5.0;
double height = 2.3;
double area = length * height;
System.out.println("The area of the wall is " + area + " square meters.");
}

/* Example Run:The area of the wall is 11.5 square meters.*/input data are coded directlyinto theprogram, rather than readfrom the user calculation ouput data Three variables. A variableis a place of storage in the computer's memory. The contents of a variable are interpreted according to the data type.Here the type is a decimal numeral (double).

Ruby the UML Way

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

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

  1. MVC link1
  2. MVC link2
  3. MVC link3

References