3

I am drawing some diagram, and I am wondering if it is acceptable for the actor to be in diagram more than once (for better transparency of the diagram)?

Thanks

uksz
  • 18,239
  • 30
  • 94
  • 161
  • 1
    I think UML allows it, but I would not consider it a best practice. If you are facing this issue then you are probably trying to show too much on a single diagram. – Geert Bellekens Dec 19 '15 at 18:13

2 Answers2

5

UMLDiagram is a composition of UMLDiagramElements, however Actor is NOT UmlDiagramElement, it is an Element. The UMLDiagramElement counterpart for Actor is either UMLShape (when shown as icon/figure) or UMLClassifierShape (when shown as a class box).

You have to keep the concepts of "UML Model" and "UML Diagram" separate. Model is a conceptual representation of your domain, and diagram is a concrete visual representation of a model.

The two elements from Model and Diagram are then connected by an association (B.2.2). enter image description here

The association is N:M (and unidirectional), the model doesn't care that it is being visualized.

As far as I can tell there is nothing that would restrict you from having several visual representations of a single actor.

Lastly as both Thomas and Geert mentioned, it is a bad practice. If your diagram is so complex that you want multiple representations you should probably decompose it.

Peter Uhnak
  • 9,617
  • 5
  • 38
  • 51
2

Although UML does not forbid to use the same element more than once on a diagram, this is no good practice. Having the same UML element more than once on a diagram leads to confusion of the diagram reader. If you have the need to un-clutter connectors you probably already ran into a spider-web diagram style and you're better off to create several smaller diagrams.

Think of the implication: if any element appears more than once, then how would you know they are the same. This would lead to more confusion than it would actually help.

qwerty_so
  • 35,448
  • 8
  • 62
  • 86