UML Class Diagram.

Slides:



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

Stereotypes Stereotypes provide the capability to create a new kind of modeling element. –They can be used to classify or mark modeling elements. –A type.
CRC Modeling. Recap Class Modeling – How to Identify classes, its attributes and functions? – Class selection criteria – Relationships Associations Generalization.
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 Diagram and Packages Written by Zvika Gutterman Adam Carmi.
UML Class Diagram and Packages 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 
Finding Analysis Classes Written by Zvika Gutterman Adam Carmi.
7M822 UML Class Diagrams advanced concepts 15 September 2008.
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.
The Unified Modeling Language (UML) Class Diagrams.
Object-Oriented Analysis and Design
OBJECT ORIENTED PROGRAMMING LECTURE 12 Instructor: Rashi Garg Coordinator: Gaurav Saxena.
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.
Lab 04.
CS3773 Software Engineering Lecture 04 UML Class Diagram.
Databases : Data Modeling 2007, Fall Pusan National University Ki-Joune Li.
بسم الله الرحمن الرحيم ” اللهم أنت ربي لا إله إلا أنت خلقتني و أنا عبدك وأنا على عهدك ووعدك ما استطعت ، أعوذ بك من شر ما صنعت ، أبوء لك بنعمتك على و أبوء.
® 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.
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,
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.
Data Modelling 2014, Fall Pusan National University Ki-Joune Li.
CHAPTER
Unified Modeling Language (UML)
UML Diagrams: Class Diagrams The Static Analysis Model
Object-Oriented Modeling
COMP 2710 Software Construction Class Diagrams
Chapter 5: Structural Modeling
Course Outcomes of Object Oriented Modeling Design (17630,C604)
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
Class diagram Description
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
UML Unified Modelling Language
UML Class Diagrams: Basic Concepts
Interactions.
Object Oriented Analysis and Design
Lec 3: Object-Oriented Data Modeling
تحليل انظمة و تصميمها الوحدة الخامسة أ.محمد زكي شبير.
2018, Fall Pusan National University Ki-Joune Li
Unified Modelling Language
Understand and Use Object Oriented Methods
Analysis models and design models
Copyright 2007 Oxford Consulting, Ltd
Class Diagrams Class diagram is basically a graphical representation of the static view of the system and represents different aspects of the application.
Class Diagram.
Use Case Analysis – continued
Information System Design
UML  UML stands for Unified Modeling Language. It is a standard which is mainly used for creating object- oriented, meaningful documentation models for.
2019, Fall Pusan National University Ki-Joune Li
Presentation transcript:

UML Class Diagram

What is a Class Diagram? A Class Diagram is a diagram describing the structure of a system shows the system's  classes Attributes operations (or methods), Relationships among the classes. UML Class Diagrams

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

Class Describes a set of objects having similar: Attributes (status) Operations (behavior) Relationships with other classes Attributes and operations may have their visibility marked: "+" for public "#" for protected "−" for private "~" for package Class Name Window size: Size visibility: boolean display() hide() Attributes Operations UML Class Diagrams

Associations 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. Example: “An Employee works for a Company” Employee Company UML Class Diagrams

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

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 Diagrams

Associations (cont.) Multiplicity the number of objects that participate in the association. Indicates whether or not an association is mandatory. Multiplicity Indicators Exactly one 1 Zero or more (unlimited) * (0..*) One or more 1..* Zero or one (optional association) 0..1 Specified range 2..4 Multiple, disjoint ranges 2, 4..6, 8 UML Class Diagrams

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. Car Door House 1..* 2..* Whole Part UML Class Diagrams

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 Diagrams

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. Circle Point 3..* 1 Polygon Point Circle UML Class Diagrams

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

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 Diagrams

<<interface>> List 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 <<interface>> List ArrayList UML Class Diagrams

Dependency Dependency is a weaker form of relationship which indicates that one class depends on another because it uses it at some point in time. One class depends on another if the independent class is a parameter variable or local variable of a method of the dependent class. This is different from an association, where an attribute of the dependent class is an instance of the independent class. Iterator <<friend>> Vector UML Class Diagrams

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 Diagrams

Traffic Violation Report System Example id : long name : String rank : int Policeman <<abstract>> TrafficPoliceman description : String TrafficReport Violation Offender 1..* 1 reports of issues * occuredAt : Date UML Class Diagrams

Analysis Classes Elicitation Consider main perspectives of the system Interface between the system and its actors Protocols for information exchange Don’t concentrate on visual aspects Data the system uses The core of the system, key concepts The system logic Controls and coordinates the behavior Delegates the work to other classes Decouples interface and data classes UML Class Diagrams

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

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 System / Device interface classes Concentrate on what protocols must be defined. Don’t concentrate on how the protocols are implemented UML Class Diagrams

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

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 Diagrams

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 Diagrams