Drawing an abstract UML class on paper without italics?

How should I represent an abstract class (in Java) in a UML diagram, taken manually on paper, without using an italic font?

+4
source share
2 answers

You can use the annotation {abstract}under the class name.

It should look like this:

+---------------+
|   Classname   |
|   {abstract}  |
+---------------+

UML specifications c. 99:

The name of the abstract classifier is shown in italics, where permitted by the font used. Alternatively, or in addition, an abstract classifier can be displayed using the text annotation {abstract} after or under its name.

+7
source

abstract Foo , .

-1

Source: https://habr.com/ru/post/1655298/


All Articles