How to make method arguments visible in StarUML diagrams

I am trying to display arguments in a sequence diagram using staruml

Is it possible to display such arguments?

1: saveResult(int value) 
+6
source share
2 answers
  • Go to Toolbar β†’ Sequence β†’ Stimulus.
  • Drag from one object to another to create a stimulus line.
  • From the side you should see Properties to call
  • In the Name field, enter the name of the method, i.e. saveResult
  • In the Details section, you can specify the arguments. Put the arguments here, i.e. Int value
  • If no arguments are displayed, change the properties of the sequence diagram. Change MessageSignature to NAMEANDTYPE

enter image description here

That should do it!

+10
source

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


All Articles