How should I represent an abstract class (in Java) in an UML diagram drawn by hand on the paper without using italic font?
Asked
Active
Viewed 1,322 times
2 Answers
8
The annotation {abstract}
below the classname can be used.
Should look like this:
+---------------+
| Classname |
| {abstract} |
+---------------+
UML specs p. 99:
The name of an abstract Classifier is shown in italics, where permitted by the font in use. Alternatively or in addition, an abstract Classifier may be shown using the textual annotation {abstract} after or below its name.

qwerty_so
- 35,448
- 8
- 62
- 86

Daniel Gschösser
- 356
- 2
- 14
-
May `{abstract}` also be used for abstract operations of the class ? – Christophe Sep 23 '16 at 20:31
-
aren't guillemets («») the right way to designate the abstract keyword? – Daniel Pop Jun 03 '20 at 07:27