0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

UML notation

Posted at

UML Notation Overview

Unified Modeling Language (UML) is a standardized modeling language used to visualize, specify, construct, and document the components of software and non-software systems. UML employs various notations and diagrams to represent different aspects of a system, making it easier for stakeholders to understand complex structures and behaviors.

Types of UML Notations

UML notations can be broadly categorized into three types:

  • Structural Things: Represent the static aspects of a system.
  • Behavioral Things: Describe dynamic aspects, including interactions and state changes.
  • Grouping and Annotational Things: Help organize and clarify models.

Structural Notations

  1. Class Notation:

    • A class is depicted as a rectangle divided into up to four sections:
      • Top Section: Class name.
      • Middle Section: Attributes (properties).
      • Bottom Section: Operations (methods).
      • Optional Section: Additional details.
    • An object is similar but has its name underlined, indicating it is an instance of a class.
  2. Interface Notation:

    • Represented by a circle, an interface defines functions without implementation details.
  3. Node Notation:

    • Depicted as a square box, representing physical components like servers or networks.
  4. Component Notation:

    • Represents parts of the system, often shown as rectangles with specific labels.
  5. Actor Notation:

    • An actor is any entity that interacts with the system, usually represented by a stick figure or rectangle.
  6. Use Case Notation:

    • Illustrates high-level functionalities triggered by actors, typically shown as ovals.

****Behavioral Notations

  1. Sequence Diagram Notation:

    • Represents interactions between objects over time, using vertical lines for lifelines and horizontal arrows for messages.
  2. State Machine Notation:

    • Describes various states of a component throughout its lifecycle, with states represented as rounded rectangles and transitions as arrows.
  3. Collaboration Notation:

    • Shows relationships between objects and how they communicate, represented by dotted ellipses.

Relationship Notations

Understanding relationships is crucial in UML:

  • Association: A solid line connecting two elements, possibly annotated with multiplicity (e.g., 1..*).

  • Dependency: Indicated by a dotted line with an arrow pointing from the dependent element to the independent one.

  • Generalization: A straight line with a hollow arrowhead indicating inheritance from a parent class to a child class.

  • Aggregation: A binary association represented by a hollow diamond at one end, indicating a whole-part relationship where parts can exist independently.

  • Composition: Similar to aggregation but shown with a filled diamond, indicating that parts cannot exist without the whole.

Grouping and Annotational Notations

  1. Package Notation:

    • Used to group related elements into cohesive units, depicted as a folder icon or rectangle enclosing other elements.
  2. Note Notation:

    • Provides additional information about elements in the model, often shown as a rectangle with a folded corner.

Conclusion

UML notation serves as an essential tool in modeling systems by providing clear visual representations of both structural and behavioral aspects. Mastery of these notations allows for effective communication among stakeholders and aids in the documentation process throughout the development lifecycle. Understanding these notations is crucial for creating meaningful UML diagrams that accurately reflect system requirements and functionalities.

Citations:
[1] https://www.tutorialspoint.com/uml/uml_basic_notations.htm
[2] https://vertabelo.com/blog/uml-notation/
[3] https://www.edrawmax.com/article/uml-notations-and-symbols.html
[4] https://www.guru99.com/uml-notation-symbol.html
[5] https://atomicobject.com/oo-programming/uml-notation

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?