Unified Modelling Language (UML) Page 1 Kavoshgaran Why We Model ? A model is a simplification of reality. We build models so that we can better understand the system we are developing Benefits: – – – – Page 2 Models help us to visualize a system as it is or as we want it to be. Models permit us to specify the structure or behavior of a system. Models give us a template that guides us in constructing a system. Models document the decisions we have made. Principles of Modeling First: The choice of what models to create has a profound influence on how a problem is attacked and how a solution is shaped . Second: Every model may be expressed at different levels of precision. Third: The best models are connected to reality. Fourth: No single model is sufficient. Every nontrivial system is best approached through a small set of nearly independent models. Page 3 Introducing the UML The UML is a language for Visualizing Specifying Constructing Documenting Page 4 •Building Blocks of the UML The vocabulary of the UML encompasses three kinds of building blocks: – – – Page 5 Things Relationships Diagrams Things in the UML Structural things Behavioral things Grouping things Annotational things Page 6 Structural Things Structural things are the nouns of UML models. These are the mostly static parts of a model, representing elements that are either conceptual or physical. In all, there are seven kinds of structural things. Includes: – – – – – – Page 7 Classes Interfaces Collaborations Use Case Component Node Behavioral Things Behavioral Things Behavioral things are the dynamic parts of UML models. These are the verbs of a model, representing behavior over time and space. In all, there are two primary kinds of behavioral things. Includes: – – – Page 8 interaction state machine States Grouping Things Grouping things are the organizational parts of UML models. These are the boxes into which a model can be decomposed. In all, there is one primary kind of grouping thing, namely, packages. Includes: – Page 9 Packages Annotational Things Annotational things are the explanatory parts of UML models. These are the comments you may apply to describe, illuminate, and remark about any element in a model. Includes: – Page 10 Notes Relationships in the UML Dependency Association Generalization Realization Page 11 Dependency? dependency is a semantic relationship between two things in which a change to one thing (the independent thing) may affect the semantics of the other thing. Page 12 Association? association is a structural relationship that describes a set of links, a link being a connection among objects. Aggregation is a special kind of association, representing a structural relationship between a whole and its parts. Page 13 Generalization? a generalization is a specialization/generalization relationship in which objects of the specialized element (the child) are substitutable for objects of the generalized element (the parent). Page 14 Realization? a realization is a semantic relationship between classifiers, wherein one classifier specifies a contract that another classifier guarantees to carry out. classifier: A mechanism that describes structural and behavioral features. Classifiers include classes, interfaces, datatypes, signals, components, nodes, use cases, and subsystems. Page 15 Diagrams in the UML A diagram is the graphical presentation of a set of elements, most often rendered as a connected graph of vertices (things) and arcs (relationships). UML includes nine such diagrams: – – – – – – – – – Page 16 Class diagram Object diagram Use case diagram Sequence diagram Collaboration diagram Statechart diagram Activity diagram Component diagram Deployment diagram Diagrams in the UML A class diagram shows a set of classes, interfaces, and collaborations and their relationships. These diagrams are the most common diagram found in modeling object-oriented systems. Class diagrams address the static design view of a system. Class diagrams that include active classes address the static process view of a system. An object diagram shows a set of objects and their relationships. Object diagrams represent static snapshots of instances of the things found in class diagrams. These diagrams address the static design view or static process view of a system as do class diagrams, but from the perspective of real or prototypical cases. A use case diagram shows a set of use cases and actors (a special kind of class) and their relationships. Use case diagrams address the static use case view of a system. These diagrams are especially important in organizing and modeling the behaviors of a system. Page 17 Diagrams in the UML sequence diagrams and collaboration diagrams are kinds of interaction diagrams. An interaction diagram shows an interaction, consisting of a set of objects and their relationships, including the messages that may be dispatched among them. Interaction diagrams address the dynamic view of a system. A sequence diagram is an interaction diagram that emphasizes the time-ordering of messages; a collaboration diagram is an interaction diagram that emphasizes the structural organization of the objects that send and receive messages. Sequence diagrams and collaboration diagrams are isomorphic, meaning that you can take one and transform it into the other. A statechart diagram shows a state machine, consisting of states, transitions, events, and activities. Statechart diagrams address the dynamic view of a system. They are especially important in modeling the behavior of an interface, class, or collaboration and emphasize the event-ordered behavior of an object, which is especially useful in modeling reactive systems. An activity diagram is a special kind of a statechart diagram that shows the flow from activity to activity within a system. Activity diagrams address the dynamic view of a system. They are especially important in modeling the function of a system and emphasize the flow of control among objects. Page 18 Diagrams in the UML A component diagram shows the organizations and dependencies among a set of components. Component diagrams address the static implementation view of a system. They are related to class diagrams in that a component typically maps to one or more classes, interfaces, or collaborations. A deployment diagram shows the configuration of run-time processing nodes and the components that live on them. Deployment diagrams address the static deployment view of an architecture. They are related to component diagrams in that a node typically encloses one or more components. Page 19 Common Mechanisms in the UML Common Mechanisms – – – – Specifications Adornments Common divisions Extensibility mechanisms Specifications :behind every part of its graphical notation there is a specification that provides a textual statement of the syntax and semantics of that building block. Adornments:Most elements in the UML have a unique and direct graphical notation that provides a visual representation of the most important aspects of the element. Common Divisions: In modeling object-oriented systems, the world often gets divided in at least a couple of ways. Page 20 Extensibility Mechanisms Includes: – – – Stereotypes Tagged values Constraints A stereotype extends the vocabulary of the UML, allowing you to create new kinds of building blocks that are derived from existing ones but that are specific to your problem. A tagged value extends the properties of a UML building block, allowing you to create new information in that element's specification. A constraint extends the semantics of a UML building block, allowing you to add new rules or modify existing ones. Page 21 Extensibility Mechanisms Page 22 Architecture Architecture is the set of significant decisions about – – – – – Page 23 The organization of a software system The selection of the structural elements and their interfaces by which the system is composed Their behavior, as specified in the collaborations among those elements The composition of these structural and behavioral elements into progressively larger subsystems The architectural style that guides this organization: the static and dynamic elements and their interfaces, their collaborations, and their composition Modeling a System's Architecture (4+1) Page 24 Classes Page 25 Class Diagram Content: – – – – Classes Interfaces Collaborations Dependency, generalization, and association relationships Common Use: – – – Page 26 To model the vocabulary of a system To model simple collaborations To model a logical database schema Class Diagram Page 27 Modeling Simple Collaborations Page 28 Modeling a Logical Database Schema Page 29 Advanced Classes Page 30 Classifier A classifier is a mechanism that describes structural and behavioral features. Classifiers include classes, interfaces, datatypes, signals, components, nodes, use cases, and subsystems. Page 31 Template Class Page 32 Visibility Page 33 Advanced Relationships A dependency is a using relationship, specifying that a change in the specification of one thing (for example, class SetTopController ) may affect another thing that uses it. Page 34 Forward and Reverse Engineering public abstract class EventHandler { EventHandler successor; private Integer currentEventID; private String source; EventHandler() {} public void handleRequest() {} } Page 35 Abstract, Root, Leaf, and Polymorphic Elements Page 36 Multiplicity Page 37 Modeling the Semantics of a Class Specify the responsibilities of the class Specify the semantics of the class as a whole Specify the body of each method Specify the pre- and postconditions of each operation, plus the invariants of the class as a whole Specify a state machine for the class Specify a collaboration that represents the class Specify the pre- and postconditions of each operation, plus the invariants of the class as a whole, using a formal language such as OCL. Page 38 Interfaces Page 39 Roles Page 40 Modeling the Seams in a System Page 41 Modeling Static Types Page 42 Modeling Dynamic Types Page 43 Packages package is a general purpose mechanism for organizing modeling elements into groups. Page 44 Simple and Extended Package Page 45 Owned Elements Page 46 Importing and Exporting Page 47 Generalization Among Packages Page 48 Modeling Groups of Elements Page 49 Modeling Architectural Views Page 50 Interaction Diagrams An interaction diagram shows an interaction, consisting of a set of objects and their relationships, including the messages that may be dispatched among them. A sequence diagram is an interaction diagram that emphasizes the time ordering of messages . A collaboration diagram is an interaction diagram that emphasizes the structural organization of the objects that send and receive messages. Page 51 Interaction Diagrams Page 52 Sequence Diagrams Page 53 Collaboration Diagrams Page 54 Modeling Flows of Control by Time Ordering Page 55 Modeling Flows of Control by Organization Page 56 Forward and Reverse Engineering public void register() { CourseCollection c = getSchedule(); for (int i = 0; i < c.size(); i++) c.item(i).add(this); this.registered = true; } Page 57 Activity Diagrams Activity diagrams are one of the five diagrams in the UML for modeling the dynamic aspects of systems. An activity diagram is essentially a flowchart, showing flow of control from activity to activity. Common Use – – Page 58 Modeling a workflow Modeling an operation. Activity Diagrams Page 59 Action States Action states can't be decomposed. Furthermore, action states are atomic, meaning that events may occur, but the work of the action state is not interrupted. Page 60 Activity States activity states can be further decomposed, their activity being represented by other activity diagrams. Page 61 Transitions When the action or activity of a state completes, flow of control passes immediately to the next action or activity state. Page 62 Branching sequential transitions are common, but they aren't the only kind of path you'll need to model a flow of control. Page 63 Forking and Joining Page 64 Swimlanes Page 65 Object Flow Page 66 Modeling a Workflow Page 67 Modeling an Operation Page 68 Point Line::intersection (l : Line) { if (slope == l.slope) return Point(0,0); int x = (l.delta - delta) / (slope - l.slope); int y = (slope * x) + delta; return Point(x, y); } Events and Signals An event is the specification of a significant occurrence that has a location in time and space. A signal, the passing of time, and a change of state are asynchronous events, representing events that can happen at arbitrary times. Page 69 Signals Page 70 Call Events Page 71 Time and Change Events Page 72 State Machines Page 73 States Page 74 Transitions Page 75 Advanced States and Transitions Page 76 Substates Page 77 History States Page 78 Concurrent Substates Page 79 Modeling the Lifetime of An Object Page 80 Components Page 81 Simple and Extended Components Page 82 Components and Interfaces Page 83 Modeling Executables and Libraries Page 84 Modeling Tables, Files, and Documents Page 85 Modeling an API Page 86 Modeling Source Code Page 87 Node A node is a physical element that exists at run time and represents a computational resource, generally having at least some memory and, often, processing capability. Page 88 Nodes and Components Page 89 Connections Page 90 Processors and Devices Page 91 Modeling the Distribution of Components Page 92 Deployment Diagram Page 93 Modeling a Client/Server System Page 94 Modeling a Fully Distributed System Page 95
© Copyright 2025 Paperzz