0

I'm creating some sequence diagram and i want to detail my calls, but there is a class which call successively intern functions, would it be ok if i draw it this way:

enter image description here

If not how could i do ?

thanks !

qwerty_so
  • 35,448
  • 8
  • 62
  • 86

1 Answers1

0

No, that's syntactically simply wrong. You would use a Loop Fragment:

enter image description here

funcA is an internal call. Inside the two operations funcB and funcC will be called in a loop which is guarded by the condition some condition. This could as well be N times or whatever constraints the loop.

qwerty_so
  • 35,448
  • 8
  • 62
  • 86
  • I dont get how i could represent it on a loop ? I'd like to represent this kind of calls : func1(){ func2() func3() } – Sicka Rius Mar 05 '18 at 12:17