For example in java, the following code method a() { b(); c(); } will produce two invocation associations first from method a to method b, and second from method a to method c. These associations are bound together and can be navigated with previous and next.
Maybe use another example:
method a() { b(); c(); c(); a() }
How many associations?
Alexandre