I want to achieve something like this in Enterprise Architect's Communication Diagrams:
start() ---------------- 1. create() ------------
------------> | RGController | ---------------> | U : User |
---------------- ------------
But I am facing 2 problems:
- It seems I have to always make a connection between 2 objects (I can't have the start() message just come out of nowhere, like I'd want).
- I can't control the numbering as I'd
want. Is there any way I could just
set the numbering by myself? If I
define that an actor is calling
start()
onRGController
, it will call it message 1 when I'd want message 1 to beUser.create()
.