Uml (unified Modeling Language)

  • October 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Uml (unified Modeling Language) as PDF for free.

More details

  • Words: 2,063
  • Pages: 10
Unified Modeling Language

A paper

Denise Sue Gliane

An Introduction to Unified Modeling Language In our world today, large enterprise applications are used to execute core business applications to keep an organization’s function well-managed and up-to-date. In order to do that, they must be structured in a way that enables scalability, security, and robust execution under stressful conditions, and their structure - frequently referred to as their architecture. A well-designed architecture benefits any program. Large applications was mentioned first because structure is a way of dealing with complexity, so the benefits of structure (and of modeling and design, as we'll demonstrate) compound as application size grows large. Another benefit of structure is that it enables code reuse: Design time is the easiest time to structure an application as a collection of self-contained modules or components. Eventually, enterprises build up a library of models of components, each one representing an implementation stored in a library of code modules. When another application needs the same functionality, the designer can quickly import its module from the library. At coding time, the developer can just as quickly import the code module into the application. [3] Modeling is the designing of software applications before coding. It is an essential part of large software projects, and helpful to medium and even small projects as well. A model plays the analogous role in software development that blueprints and other plans (e.g. site maps, elevations, physical models). Using a model, those responsible for a software development project's success can assure themselves that business functionality is complete and correct, end-user needs are met, and program design supports requirements for scalability, robustness, security, extendibility, and other characteristics, before implementation in code renders changes difficult and expensive to make. [3] Models help us by letting us work at a higher level of abstraction. A model may do this by hiding or masking details, bringing out the big picture, or by focusing on different aspects of the prototype. [3]

UML by Definition UML (Unified Modeling Language) is a standard notation for the modeling of real-world objects as a first step in developing an object-oriented design methodology. It has been fostered and now is an accepted standard of the Object Management Group (OMG), which is also the home of Common Object Request Broker Architecture (CORBA), the leading industry standard for distributed object programming. Vendors of computer-aided software engineering (CASE) products are now supporting UML and it has been endorsed by almost every maker of software development products , including IBM and Microsoft (for its Visual Basic environment). [4]

UML: A Brief History

Identifiable Object-Oriented Modeling Languages (OOML) began to appear between mid-1970 and the late 1980s as various methodologists experimented with different approaches to object-oriented analysis and design. By the mid-1990s, new iterations of these methods began to appear and these methods began to incorporate each other’s techniques, and a few clearly prominent methods emerged. [2] The development of UML began in late 1994 when Grady Booch and Jim Rumbaugh of Rational Software Corporation began their work on unifying the Booch and OMT (Object Modeling Technique) methods. In the Fall of 1995, Ivar Jacobson and his “Objectory” company joined Rational and this unification effort, merging in the OOSE (Object-Oriented Software Engineering) method. [2] As the primary authors of the Booch, OMT, and OOSE methods, Grady Booch, Jim Rumbaugh, and Ivar Jacobson were motivated to create a unified modeling language for three reasons. First, these methods were already evolving toward each other independently. It made sense to continue that evolution together rather than apart, eliminating the potential for any unnecessary and gratuitous differences that would further confuse users. Second, by unifying the semantics and notation, they could bring some stability to the object-oriented marketplace, allowing projects to settle on one mature modeling language and letting tool-builders focus on delivering more useful features. Third, they expected that their collaboration would yield improvements in all three earlier methods, helping them to capture lessons learned and to address problems that none of their methods previously handled well. [2] The efforts of Booch, Rumbaugh, and Jacobson resulted in the release of the UML 0.9 and 0.91 documents in June and October of 1996. During 1996, the UML authors invited and received feedback from the general community. They incorporated this feedback, but it was clear that an additional focused attention was still required. [2] While Rational was bringing UML together, efforts were being made on achieving the broader goal of an industry standard modeling language. In early 1995, Ivar Jacobson (then Chief Technology Officer of Objectory) and Richard Soley (then Chief Technology Officer of OMG) decided to push harder to achieve standardization in the methods marketplace. In June 1995, an OMG-hosted meeting of all major methodologists (or their representatives) resulted in the first worldwide agreement to seek methodology standards, under the aegis of the OMG process. [2] In 1996, it became clear that several organizations saw UML as strategic to their business. A Request for Proposal (RFP) issued by the Object Management Group (OMG) provided the catalyst for these organizations to join forces around producing a joint RFP response. Rational established the UML Partners consortium with several organizations willing to dedicate resources to work toward a strong UML 1.0 definition. Those contributing most to the UML 1.0 definition included: Digital Equipment Corp., HP, i-Logix, IntelliCorp, IBM, ICON Computing, MCI Systemhouse, Microsoft, Oracle, Rational Software, TI, and Unisys. This collaboration produced UML 1.0, a modeling language that was well defined, expressive, powerful, and generally applicable. This was submitted to the OMG in January 1997 as an initial RFP response. [2] In January 1997 IBM, ObjecTime, Platinum Technology, Ptech, Taskon, Reich Technologies and Softeam also submitted separate RFP responses to the OMG. These companies joined the UML partners to contribute their ideas, and together the partners produced the revised UML 1.1 response. The focus of

the UML 1.1 release was to improve the clarity of the UML 1.0 semantics and to incorporate contributions from the new partners. It was submitted to the OMG for their consideration and adopted in the fall of 1997. [2]

Modeling with UML UML 2.0 defines thirteen types of diagrams, divided into three categories: Six diagram types represent static application structure; three represent general types of behavior; and four represent different aspects of interactions: [3] Structure Diagrams include the Class Diagram, Object Diagram, Component Diagram, Composite Structure Diagram, Package Diagram, and Deployment Diagram. Behavior Diagrams include the Use Case Diagram (used by some methodologies during requirements gathering); Activity Diagram, and State Machine Diagram. Interaction Diagrams include the Sequence Diagram, Communication Diagram, Timing Diagram, and Interaction Overview Diagram.

Unified Modeling Language Diagrams

Use Case Diagram A use case diagram is a set of scenarios that describing an interaction between a user and a system. It is an external view of the system that represents some action the user might perform in order to complete a task. They are helpful in exposing requirements and planning the project. During the initial stage of a project most use cases should be defined, but as the project continues more might become visible. [1f]

Figure 1: Use Case Diagram

In Figure 1: Use Case Diagram the customer as the actor because the customer is using the ordering system. The diagram takes the simple steps listed above and shows them as actions the customer might perform. [1f]

Class Diagrams Class diagrams are widely used to describe the types of objects in a system and their relationships. It models class structure and contents using design elements such as classes, packages and objects. Class diagrams describe three different perspectives when designing a system: conceptual, specification, and implementation. These perspectives become evident as the diagram is created and help solidify the design. [1b]

Figure 2: Class Diagram

In Figure 2: Class Diagram we see that the example class name “Customer” has two (2) attributes and one (1) operation. [1b]

Class diagrams also display relationships such as containment, inheritance, associations and others.

Figure 3: Class Diagram 1

In Figure 3: Class Diagram 1 we see how the instances interact with each other. This is an example of a class diagram for a simple transaction record. [1b]

Interaction Diagram Interaction diagram models the behavior of use cases by describing the way groups of objects interact to complete the task. This diagram is used when you want to model the behavior of several objects in a use case. It also demonstrates how the objects collaborate for the behavior. Interaction diagrams do not give an in depth representation of the behavior. [1c]

Below, Figure 4: Interaction Diagram shows an object of class 1 start the behavior by sending a message to an object of class 2. Messages pass between the different objects until the object of class 1 receives the final message. [1c]

Figure 4: Interaction Diagram

State Diagram State diagrams are used to describe the behavior of a system. State diagrams describe all of the possible states of an object as events occur. Each diagram usually represents objects of a single class and tracks the different states of its objects through the system. This diagram is to be used for classes where it is necessary to understand the behavior of the object through the entire system. [1e]

Figure 5: State Diagram

In Figure 5: State Diagram it shows an example of an Order object. When the object enters the Checking state it performs the activity "check items." After the activity is completed the object transitions to the next state based on the conditions [all items available] or [an item is not available]. If an item is not available the order is canceled. If all items are available then the order is dispatched. When the object transitions to the Dispatching state the activity "initiate delivery" is performed. After this activity is complete the object transitions again to the Delivered state. [1e]

Activity Diagram Activity diagrams describe the workflow behavior of a system. This is similar to state diagrams because activities are the state of “doing something”. The diagrams describe the state of activities by showing the sequence of activities performed. Activity diagrams can show activities that are conditional or parallel. The use of this diagram is to model the workflow behind the system being designed. This is useful for analyzing a use case by describing what actions need to take place and when they should occur; describing a complicated sequential algorithm; and modeling applications with parallel processes. [1a]

Figure 6: Activity Diagram

In Figure 6: Activity Diagram we see an example of an order processing activity and the flow of actions that might take place on the system’s workflow. We assume that when an order has taken place, it will split into two (2) parallel activities. One side fills and sends the order while the other handles the billing. On the Fill Order side, the method of delivery is decided conditionally. Depending on the condition either the Overnight Delivery activity or the Regular Delivery activity is performed. Finally the parallel activities combine to close the order. [1a]

Physical Diagrams Physical diagram has two types: Deployment diagram and Component diagram. Deployment diagrams show the physical relationship between hardware and software in a system while Component diagrams show the software components of a system and how they are related to one another. Often times, these two are connected into a single diagram. [1d] The deployment diagram contains nodes and connections. Nodes usually represent a piece of hardware in the system. A connection depicts the communication path used by the hardware to communicate and indicates a method with protocol such as TCP/IP. [1d]

Figure 7: Physical Diagram

In Figure 7: Physical Diagram shows two nodes which represent two machines communicating through TCP/IP. Component2 is dependent on component1, so changes to component 2 could affect component1. The diagram also depicts component3 interfacing with component1. [1d]

Works Cited [1] D. Braun, J. S. (2001, Spring). Activity Diagram. Retrieved August 7, 2008, from UML Tutorial: a. http://atlas.kennesaw.edu/~dbraun/csis4650/A&D/UML_tutorial/activity.htm b. http://atlas.kennesaw.edu/~dbraun/csis4650/A&D/UML_tutorial/class.htm c. http://atlas.kennesaw.edu/~dbraun/csis4650/A&D/UML_tutorial/interaction.htm d. http://atlas.kennesaw.edu/~dbraun/csis4650/A&D/UML_tutorial/physical.htm e. http://atlas.kennesaw.edu/~dbraun/csis4650/A&D/UML_tutorial/state.htm f. http://atlas.kennesaw.edu/~dbraun/csis4650/A&D/UML_tutorial/use_case.htm [2] D. Braun, J. S. (2001, Spring). Unified Modeling Language (UML) Tutorial. Retrieved August 1, 2008, from UML Tutorial: http://atlas.kennesaw.edu/~dbraun/csis4650/A&D/UML_tutorial/history_of_uml.htm#1 [3] Object Management Group. (2007, 11 9). Introduction to OMG's Unified Modeling Language™. Retrieved August 1, 2008, from Introduction to OMG UML: http://www.omg.org/gettingstarted/what_is_uml.htm [4] Shnitman, A. (2007, February 15). Unified Modeling Language. Retrieved August 1, 2008, from What is Unified Modeling Language: http://searchsoftwarequality.techtarget.com/sDefinition/0,,sid92_gci214158,00.html

Related Documents