General Rules
Attributes and Properties
Type of Attribute or Property | |
---|---|
Public attribute | + attribute : [data type] |
Private attribute | - attribute : [data type] |
Public property | + «property» Property : [data type] |
Private property | - «property» Property : [data type] |
Methods with Return Type
Type of Method | |
---|---|
Public method with no arguments | + Method() : [return type] |
Private method with no arguments | - Method() : [return type] |
Public method with arguments | + Method(argument1 : [data type 1], …, argumentn : [data type n]) : [return type] |
Private method with arguments | - Method(argument1 : [data type 1], …, argumentn : [data type n]) : [return type] |
Methods with Void or No Return Type
Type of Method | |
---|---|
Public method with arguments | + Method(argument1 : [data type 1],…, argumentn : [data type n]) |
Private method with arguments | - Method(argument1 : [data type 1],…, argumentn : [data type n]) |
Special Cases
Case | How to Change UML Formatting |
---|---|
Static | Underline |
Abstract | Italicize |
Protected | # instead of + or - |
Abstract class | Add «Abstract» above class name |
Interface | Add «Interface» above class name |
Relationships (Arrows)
Arrow Type | What It Means |
---|---|
Open arrow with solid line (⇽) | Inheritance |
Open arrow with dashed line (◁┈) | Realization |
Examples
Simple Example
For example, in the following UML class diagram:

Attributes
attr1
isprivate
and of typestring
,attr2
ispublic
and of typeint
,
Properties
Prop1
is apublic
property of typechar
(that may have both aset
and aget
, or only one of them),Prop2
is apublic
property of typedouble
that must contain both aset
and aget
,Prop3
is aprivate
property of typefloat
that contains only aget
and noset
,
Methods
Method1
is apublic
method that takes as an argument asbyte
and returns ashort
,Method2
is apublic
method that takes as an argument along
and does not return anything (that is, its return type isvoid
, here omitted),Method3
is apublic
abstract method that does not take any argument and returns astring
,Method4
is apublic
static method that does not take any argument and returns achar
.
Constructors
- The first
ExampleClass1
is apublic
constructor that does not take any argument (and does not have any return type), - The second
ExampleClass1
is aprivate
constructor (we know it even if the indication «constructor» is missing, since it has the same name as the class) that takes as an argument abype
(and does not have any return type)
Forbidden Combination
Note that the following does not make sense:
- A static method cannot be abstract,
- An attribute cannot be abstract,