UML Class Diagram and Packages Written by Zvika Gutterman Adam Carmi.

Slides:



Advertisements
Similar presentations
Object-oriented modeling Class/Object Diagrams
Advertisements

CRC Modeling. Recap Class Modeling – How to Identify classes, its attributes and functions? – Class selection criteria – Relationships Associations Generalization.
OOAD Using the UML - Use-Case Analysis, v 4.2 Copyright  Rational Software, all rights reserved 1/18 Use Case Analysis – continued Control Classes.
UML Class Diagram. UML Class Diagrams2 Agenda What is a Class Diagram? Essential Elements of a UML Class Diagram Tips.
UML Class Diagram and Packages Written by Zvika Gutterman Adam Carmi.
UML Class Diagram. UML Class Diagrams2 Agenda What is a Class Diagram? Essential Elements of a UML Class Diagram Tips.
UML – Class Diagrams.
UML Class Diagram and Packages Written by Zvika Gutterman Adam Carmi.
Use Case Modeling Written by: Zvika Gutterman Adam Carmi.
UML Class Diagram and Packages
Finding Analysis Classes Written by Zvika Gutterman Adam Carmi.
7M701 1 Class Diagram advanced concepts. 7M701 2 Characteristics of Object Oriented Design (OOD) objectData and operations (functions) are combined 
Class Diagram & Object Diagram
Finding Analysis Classes Written by Zvika Gutterman Adam Carmi.
Practical Object-Oriented Design with UML 2e Slide 1/1 ©The McGraw-Hill Companies, 2004 Class and Object Diagrams PRACTICAL OBJECT-ORIENTED DESIGN WITH.
7M822 UML Class Diagrams advanced concepts 15 September 2008.
Sharif University of Technology1 Design and Use-case Realization Software Engineering Laboratory Fall 2006.
Use Case Analysis – continued
Modelling classes Drawing a Class Diagram. Class diagram First pick the classes –Choose relevant nouns, which have attributes and operations. Find the.
UML Class Diagrams: Basic Concepts. Objects –The purpose of class modeling is to describe objects. –An object is a concept, abstraction or thing that.
Unified Modeling Language
Object-Oriented Analysis and Design
UML Unified Modeling Language. What is UML? Unified Modeling Language (UML) is a standardized, general-purpose modeling language in the field of software.
1 A Student Guide to Object- Orientated Systems Chapter 4 Objects and Classes: the basic concepts.
UML Diagrams: Class Diagrams The Static Analysis Model Instructor: Dr. Hany H. Ammar Dept. of Computer Science and Electrical Engineering, WVU.
Object-Oriented Software Development F Software Development Process F Analyze Relationships Among Objects F Class Development F Class Design Guidelines.
CS3773 Software Engineering Lecture 04 UML Class Diagram.
Databases : Data Modeling 2007, Fall Pusan National University Ki-Joune Li.
بسم الله الرحمن الرحيم ” اللهم أنت ربي لا إله إلا أنت خلقتني و أنا عبدك وأنا على عهدك ووعدك ما استطعت ، أعوذ بك من شر ما صنعت ، أبوء لك بنعمتك على و أبوء.
Unified Modeling Language © 2002 by Dietrich and Urban1 ADVANCED DATABASE CONCEPTS Unified Modeling Language Susan D. Urban and Suzanne W. Dietrich Department.
® IBM Software Group © 2006 IBM Corporation Rational Software France Object-Oriented Analysis and Design with UML2 and Rational Software Modeler 03. Classes,
Class-based Modeling.
SOFTWARE DESIGN AND ARCHITECTURE LECTURE 24. Review ANALYSIS Level Class Diagram – Identifying Entities – Identifying Attributes – Identifying Operations.
Fall 2010 CS4310 Requirements Engineering A Brief Review of UML & OO Dr. Guoqiang Hu Department of Computer Science UTEP 1.
Class diagram Used for describing structure and behaviour in the use cases Provide a conceptual model of the system in terms of entities and their relationships.
UML Class Diagram Trisha Cummings. What we will be covering What is a Class Diagram? Essential Elements of a UML Class Diagram UML Packages Logical Distribution.
An Introduction to the Unified Modeling Language
What is a Structural Model?
Lecture 1: UML Class Diagram September 12, UML Class Diagrams2 What is a Class Diagram? A class diagram describes the types of objects in the system.
Class Diagram. Classes Software Design (UML) Class Name attributes operations A class is a description of a set of objects that share the same attributes,
Chapter 5 System Modeling Sommerville, "software engineering ", 9 th Ed., 2011.
Design Model Lecture p6 T120B pavasario sem.
Relationships Relationships between objects and between classes.
Object Oriented Analysis: Associations. 2 Object Oriented Modeling BUAD/American University Class Relationships u Classes have relationships between each.
Object-Oriented Modeling: Static Models. Object-Oriented Modeling Model the system as interacting objects Model the system as interacting objects Match.
CSCI-383 Object-Oriented Programming & Design Lecture 10.
CS212: Object Oriented Analysis and Design Lecture 33: Class and Sequence Diagram.
Chapter 16 UML Class Diagrams 1CS6359 Fall 2012 John Cole.
ITEC0724 Modern Related Technology on Mobile Devices Lecture Notes #2 1.
UML Class Diagrams Sequence Diagrams CSE230 Dae-Kyoo Kim.
Class Diagram Lecture # 1. Class diagram A Class Diagram is a diagram describing the structure of a system shows the system's classes Attributes operations.
UML Fundamental Elements. Structural Elements Represent abstractions in our system. Elements that encapsulate the system's set of behaviors. Structural.
Data Modelling 2014, Fall Pusan National University Ki-Joune Li.
Unified Modeling Language (UML)
UML Diagrams: Class Diagrams The Static Analysis Model
Object-Oriented Modeling
COMP 2710 Software Construction Class Diagrams
Course Outcomes of Object Oriented Modeling Design (17630,C604)
Class diagram Description
UML Unified Modelling Language
UML Class Diagrams: Basic Concepts
Object Oriented Analysis and Design
Lec 3: Object-Oriented Data Modeling
2018, Fall Pusan National University Ki-Joune Li
UML Class Diagram.
Unified Modelling Language
Understand and Use Object Oriented Methods
Analysis models and design models
Class Diagrams Class diagram is basically a graphical representation of the static view of the system and represents different aspects of the application.
2019, Fall Pusan National University Ki-Joune Li
Presentation transcript:

UML Class Diagram and Packages Written by Zvika Gutterman Adam Carmi

UML Class Diagrams2 Agenda What is a Class Diagram? Essential Elements of a UML Class Diagram Packages and Class Diagrams Analysis Classes Approach Tips

UML Class Diagrams3 What is a Class Diagram? A class diagram describes the types of objects in the system and the various kinds of static relationships that exist among them. –A graphical representation of a static view on declarative static elements. A central modeling technique that runs through nearly all object-oriented methods. The richest notation in UML.

UML Class Diagrams4 Essential Elements of a UML Class Diagram Class Attributes Operations Relationships –Associations –Generalization –Dependency –Realization Constraint Rules and Notes

UML Class Diagrams5 Classes A class is the description of a set of objects having similar attributes, operations, relationships and behavior. Window size: Size visibility: boolean display() hide() Class Name Attributes Operations

UML Class Diagrams6 Associations A semantic relationship between two or more classes that specifies connections among their instances. A structural relationship, specifying that objects of one class are connected to objects of a second (possibly the same) class. Example: “An Employee works for a Company” CompanyDepartmentEmployee Company semantic structural

UML Class Diagrams7 Associations (cont.) An association between two classes indicates that objects at one end of an association “recognize” objects at the other end and may send messages to them. –This property will help us discover less trivial associations using interaction diagrams.

UML Class Diagrams8 Associations (cont.) StaffMemberStudent 1..**instructs instructor Association name Role name Multiplicity Navigable (uni-directional) association Courses pre - requisites 0..3 Reflexive association Role *

UML Class Diagrams9 Associations (cont.) To clarify its meaning, an association may be named. –The name is represented as a label placed midway along the association line. –Usually a verb or a verb phrase. A role is an end of an association where it connects to a class. –May be named to indicate the role played by the class attached to the end of the association path. Usually a noun or noun phrase Mandatory for reflexive associations

UML Class Diagrams10 Associations (cont.) Multiplicity –The number of instances of the class, next to which the multiplicity expression appears, that are referenced by a single instance of the class that is at the other end of the association path. –Indicates whether or not an association is mandatory. –Provides a lower and upper bound on the number of instances.

UML Class Diagrams11 Associations (cont.) –Multiplicity Indicators Exactly one1 Zero or more (unlimited)* (0..*) One or more1..* Zero or one (optional association)0..1 Specified range2..4 Multiple, disjoint ranges2, 4..6, 8

UML Class Diagrams12 Aggregation A special form of association that models a whole-part relationship between an aggregate (the whole) and its parts. –Models a “is a part-part of” relationship. Whole Part Car Door House 1..*2..*

UML Class Diagrams13 Aggregation (cont.) Aggregation tests: –Is the phrase “part of” used to describe the relationship? A door is “part of” a car –Are some operations on the whole automatically applied to its parts? Move the car, move the door. –Are some attribute values propagated from the whole to all or some of its parts? The car is blue, therefore the door is blue. –Is there an intrinsic asymmetry to the relationship where one class is subordinate to the other? A door is part of a car. A car is not part of a door.

UML Class Diagrams14 Composition A strong form of aggregation –The whole is the sole owner of its part. The part object may belong to only one whole –Multiplicity on the whole side must be zero or one. –The life time of the part is dependent upon the whole. The composite must manage the creation and destruction of its parts. CirclePoint 3..* 1 Polygon Point Circle

UML Class Diagrams15 Generalization Indicates that objects of the specialized class (subclass) are substitutable for objects of the generalized class (super-class). –“is kind of” relationship. Shape {abstract} Circle Super Class Sub Class An abstract class Generalization relationship {abstract} is a tagged value that indicates that the class is abstract. The name of an abstract class should be italicized

UML Class Diagrams16 Generalization A sub-class inherits from its super-class –Attributes –Operations –Relationships A sub-class may –Add attributes and operations –Add relationships –Refine (override) inherited operations A generalization relationship may not be used to model interface implementation.

UML Class Diagrams17 Dependency A dependency indicates a semantic relation between two or more classes in which a change in one may force changes in the other although there is no explicit association between them. A stereotype may be used to denote the type of the dependency. IteratorVector >

UML Class Diagrams18 Realization A realization relationship indicates that one class implements a behavior specified by another class (an interface or protocol). An interface can be realized by many classes. A class may realize many interfaces. LinkedList > List LinkedList List

UML Class Diagrams19 Constraint Rules and Notes Constraints and notes annotate among other things associations, attributes, operations and classes. Constraints are semantic restrictions noted as Boolean expressions. –UML offers many pre-defined constraints. id: long { value > 0 } Customer Order *1 { total < $50 } may be canceled Constraint Note

UML Class Diagrams20 TVRS Example id : long name : String rank : int Policeman > TrafficPoliceman id : long description : String TrafficReport id : long description : String Violation name : String id : long Offender 1..*1 reports of 1..* issues1* occuredAt : Date

UML Class Diagrams21 UML Packages A package is a general purpose grouping mechanism. –Can be used to group any UML element (e.g. use case, actors, classes, components and other packages. Commonly used for specifying the logical distribution of classes. A package does not necessarily translate into a physical sub-system. Name

UML Class Diagrams22 Logical Distribution of Classes Logical distribution of classes –Higher level of abstraction over classes. –Aids in administration and coordination of the development process. –Contributes to the scalability of the system. Logical distribution of classes is inferred from the logical architecture of the system.

UML Class Diagrams23 Packages and Class Diagrams Emphasize the logical structure of the system (High level view) abc

UML Class Diagrams24 Emphasize the interface between packages by showing relations and dependencies between public classes Packages and Class Diagrams (cont.) ab a.Aa.Bb.C

UML Class Diagrams25 Packages and Class Diagrams (cont.) Add package information to class diagrams A DE F G C B

UML Class Diagrams26 Packages and Class Diagrams (cont.) Add package information to class diagrams a.A b.b.Db.b.E b.a.F b.a.G a.C a.B b.a b.b ab

UML Class Diagrams27 Analysis Classes A technique for finding analysis classes which uses three different perspectives of the system: The boundary between the system and its actors The information the system uses The control logic of the system

UML Class Diagrams28 Types of Classes > = = =

UML Class Diagrams29 Boundary Classes Models the interaction between the system’s surroundings and its inner workings –User interface classes Concentrate on what information is presented to the user Don’t concentrate on user interface details Example: –ReportDetailsForm –ConfirmationDialog –System / Device interface classes Concentrate on what protocols must be defined. Don’t concentrate on how the protocols are implemented

UML Class Diagrams30 Boundary Classes (cont.) Boundary classes are environment dependent: –UI dependent –Communication protocol dependent

UML Class Diagrams31 Entity Classes Models the key concepts of the system Usually models information that is persistent Contains the logic that solves the system problem Is environment independent Can be used in multiple use cases For example: Violation, Report, Offender.

UML Class Diagrams32 Control Classes Controls and coordinates the behavior of a use case Delegates the work of the use case to classes –A control class should tell other classes to do something and should never do anything except for directing Control classes decouple boundary and entity classes Often, there is one control class per use case

UML Class Diagrams33 Control Classes (cont.) Use case and environment dependent Example: –EditReportController –AddViolationController

UML Class Diagrams34 TVRS Example

UML Class Diagrams35 Tips Don’t try to use all the various notations. Don’t draw models for everything, concentrate on the key areas. Draw implementation models only when illustrating a particular implementation technique.