sequence-diagram Questions

3

Solved

I cannot find how to insert a line break in long titles inside nodes. For example: library(DiagrammeR) mermaid(" graph TB A[GE Solution]-->C{ } B[GA Solution]-->C{ } C{ }-->D[Sti...
Highpitched asked 16/7, 2018 at 16:59

2

Say I what to describe a login process, which involves some steps. Although each step may be an asynchronous interaction, e.g. a http request & response, the overall steps happen in a sequentia...
Ictus asked 29/3, 2022 at 7:57

3

Have created a sequence diagram using PlantUML generating containing a legend and footer. The footer contains my company's name along with copyright date. The legend is very close to the footer and...
Thesis asked 29/6, 2020 at 8:42

5

I'm making sequence diagrams with Mermaid, and I find the loop feature very cool, drawing a labeled rectangle around a loop with this code chunk: sequenceDiagram loop Title Alice->>Bob: He...
Frame asked 22/3, 2020 at 21:31

1

Solved

I'm creating some notes and images to help me better understand Builder Patterns in Java. Strictly for design purposes, I've been attempting to input additional white space between some message lin...
Muckrake asked 23/2, 2023 at 3:18

6

Solved

I want to paint a diagram where you can see the dataflow of a java program, and if there are one or multiple threads handling the data. Sequence charts don't show multithreading and get very confu...
Fadiman asked 14/6, 2011 at 14:53

3

Is there a way to end a participant's line in a sequence diagram before the end of the diagram? For example if I want to display how database stored procedures call each other: @startuml participa...
Sufferable asked 8/7, 2016 at 12:56

2

To create a rectangle, I can simply rectangle "Rectangle Label" as RectangleName, but how to make its border dashed? like below?
Plotinus asked 6/7, 2021 at 21:48

5

Solved

I created this diagram using the following code. But as you can see, the lines going from (Cancel Order) and (Place Order) to (Publisher) decide to take a terribly rounded path to get their, instea...
Graiae asked 9/2, 2018 at 19:25

3

I want to design a simple embedded system. The special thing about this is that I want to design its architecture using UML. Among other diagrams I'm using, I have a Sequence Diagram as the one sho...
Burned asked 29/8, 2013 at 13:30

1

Solved

I want to develop mobile applications, but I only focus on frontend development not on the backend. I want to make a UML diagram, but I am confused about what to do, at this point I think I will ma...
Nystatin asked 24/5, 2021 at 9:58

2

Solved

I have build a usecase diagram for hotel reservation Should i build a sequence diagram for each usecase in the usecase diagram, or can i summarize multiple usecase in a single sequence diagram?
Sulfaguanidine asked 11/9, 2015 at 8:16

4

Solved

I was wondering, how can one represent "if" statement on a sequence diagram? if (somethingShouldBeDone) { // Do it } else { // Do something else } Can it be represented at all? The thing is .....
Desberg asked 13/11, 2011 at 21:11

1

Solved

I have seen switch-case recommendations for activity diagram, however I can not find an example for sequence diagram. Do we have to use break keyword while drawing or just drawing conditions only? ...
Lustrum asked 21/10, 2019 at 12:46

6

Solved

My objective is to stimulate a sequence diagram of an application for this I need the information about a caller and callee class names at runtime. I can successfully retrieve the caller function b...
Ballew asked 12/6, 2013 at 12:6

3

I have about 700 lines of code. I have to write a little doc about this code. In this doc, I plan to have a sequence diagram to explain a bit more. something like this: Since Iam a bit lazy, I woul...
Randeerandel asked 21/7, 2017 at 12:58

6

Solved

How can you clearly illustrate multiple threads of execution in a sequence diagram or similar diagram? I haven't been able to find any clear examples. All diagrams I see are used to illustrate a ...
Humber asked 29/10, 2009 at 13:27

5

What is the difference between the alt and opt fragments in UML sequence diagrams?
Biisk asked 21/2, 2014 at 16:6

2

Solved

I wonder if there is any way to make a plantuml two sequence diagram in single page side by side. I want to keep the same actor names in both diagram. Currently if I do something like below, it aut...
Cruickshank asked 8/2, 2019 at 7:30

3

for (Item i : collection) { i.foo(); } In some abstract sequence diagrams you have a loop combined fragment with a condition along the lines of e.g. [for each item]. On a sequence diagram featu...
Warrick asked 5/3, 2017 at 18:54

3

Solved

How can I show goto statements in Sequence Diagrams. For example in the diagram below, once "sleep till hold period" is expired I want to take control back to the "is_item_inventory_onhold_state(i...
Kendallkendell asked 6/2, 2019 at 9:53

2

Solved

I'm creating a sequence diagram, and one of the classes is being observed by another class. The observed class is calling update in the observer every 5 seconds in a loop. I need to show this in th...
Hiro asked 8/2, 2009 at 21:13

1

Solved

I'm not sure how to represent something like the following in a sequence diagram (in Ruby): class FirstClass def process thing = SecondClass.new('string argument', third_class, 2) end de...
Carolyncarolyne asked 15/11, 2018 at 8:58

4

I have looked at a utility trace2uml which parses the source code and looks for a Trace2UML syntax to describe the sequence diagram and creates the sequence diagram. I am interested to know if it i...
Duluth asked 13/4, 2018 at 13:7

4

I would like to know how to generate a sequence diagram for my Native (C, C++) code. I have written my C code using vim editor. Thanks, Sen
Grayson asked 7/1, 2011 at 14:16

© 2022 - 2024 — McMap. All rights reserved.