Below is an example of the text used to describe a sequence diagram:
// Method arguments are placed after the method name, surrounded by ( and ). You
// can place anything you want inside the ( and ) but if you want to include a ) you'll
// have to escape it with a objectOne.methodOne {
objectTwo.methodTwo(foo, bar) -> value {
objectThree.methodThree(value) -> anotherValue;
objectFour.methodFour();
}
}