I was wondering, how can one represent "if cond1 else if cond2" statement on a sequence diagram?
if (condition1) {
// Do something
} else if(condition2)
{
// Do something else if
}
Im not sure if is it with two independent "Opt" clause
If possible create an image representation of a solution.