Related questions
How to show "if" condition on a sequence diagram?
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 ... in my code, fair amount of conditions are checked to …
How to Generate a Sequence Diagram from Java Source Code
I have a question about generating sequence diagram from Java source code. When I googled I saw someone told to use visual paradigm (VP), but it does not generate sequence diagram for me. Some steps in my VP are different …