UML Class Diagrams: Reference

A UML class diagram describes the object and information structures used by your application, both internally and in communication with its users. It describes the information without reference to any particular implementation. Its classes and relationships can be implemented in many ways, such as database tables, XML nodes, or compositions of software objects.

Note

This topic is about UML class diagrams. There is another kind of class diagram, the .NET class diagram, which is used to visualize program code. For more information, see Designing and Viewing Classes and Types.

Reading Class Diagrams

The table in this section describes the elements that you can see on a UML class diagram. For information about the properties of these elements, see the following topics:

For more information about how to draw UML class diagrams, see UML Class Diagrams: Guidelines. To create a UML class diagram, on the Architecture menu, click New Diagram. For more information about how to create and draw modeling diagrams, see How to: Edit a UML Model and Diagrams.

Three classes showing relationships and properties

Shape

Element

Description

1

Class

A definition of objects that share given structural or behavioral characteristics. For more information, see Properties of Types in UML Class Diagrams.

1

Classifier

The general name for a class, interface, or enumeration. Components, use cases, and actors are also classifiers.

2

Collapse/ Expand control

If you cannot see the details of a classifier, click the expander at upper-left of the classifier. You might also have to click the [+] on each segment.

3

Attribute

A typed value attached to each instance of a classifier.

To add an attribute, click the Attributes section and then press ENTER. Type the signature of the attribute. For more information, see Properties of Attributes in UML Class Diagrams.

4

Operation

A method or function that can be performed by instances of a classifier. To add an operation, click the Operations section and then press ENTER. Type the signature of the operation. For more information, see Properties of Operations in UML Class Diagrams.

5

Association

A relationship between the members of two classifiers. For more information, see Properties of Associations in UML Class Diagrams.

5a

Aggregation

An association representing a shared ownership relationship. The Aggregation property of the owner role is set to Shared.

5b

Composition

An Association representing a whole-part relationship. The Aggregation property of the owner role is set to Composite.

6

Association Name

The name of an association. The name can be left empty.

7

Role Name

The name of a role, that is, one end of an association. Can be used to refer to the associated object. In the previous illustration, for any Order O, O.ChosenMenu is its associated Menu.

Each role has its own properties, listed under the properties of the association.

8

Multiplicity

Indicates how many of the objects at this end can be linked to each object at the other. In the example, each Order must be linked to exactly one Menu.

* means that there is no upper limit to the number of links that can be made.

9

Generalization

The specific classifier inherits part of its definition from the general classifier. The general classifier is at the arrow end of the connector. Attributes, associations, and operations are inherited by the specific classifier.

Use the Inheritance tool to create a generalization between two classifiers.

Package containing interface and enumeration

Shape

Element

Description

10

Interface

A definition of part of the externally visible behavior of an object. For more information, see Properties of Types in UML Class Diagrams.

11

Enumeration

A classifier that consists of a set of literal values.

12

Package

A group of classifiers, associations, actions, lifelines, components and packages. A logical class diagram shows that the member classifiers and packages are contained within the package.

Names are scoped within packages so that Class1 within Package1 is distinct from Class1 outside that package. The name of the package appears as part of the Qualified Name properties of its contents.

You can set the Linked Package property of any UML diagram to refer to a package. All the elements that you create on that diagram will then become part of the package. They will appear under the package in UML Model Explorer.

13

Import

A relationship between packages, indicating that one package includes all the definitions of another.

14

Dependency

The definition or implementation of the dependent classifier might change if the classifier at the arrowhead end is changed.

Realization shown with conector and lollipop

Shape

Element

Description

15

Realization

The class implements the operations and attributes defined by the interface.

Use the Inheritance tool to create a realization between a class and an interface.

16

Realization

An alternative presentation of the same relationship. The label on the lollipop symbol identifies the interface.

To create this presentation, select an existing realization relationship. A Action tag appears near the association. Click the action tag, and then click Show as Lollipop.

See Also

Concepts

How to: Edit a UML Model and Diagrams

UML Class Diagrams: Guidelines

Properties of Types in UML Class Diagrams

Properties of Attributes in UML Class Diagrams

Properties of Operations in UML Class Diagrams

Properties of Associations in UML Class Diagrams