Book a Demo

Author Topic: sequence diagram message connector  (Read 2273 times)

Jie_Zhao

  • EA Novice
  • *
  • Posts: 9
  • Karma: +0/-0
  • I love YaBB 1 Gold!
    • View Profile
sequence diagram message connector
« on: July 23, 2004, 03:30:48 am »
Hi,

I tried to model a scenario as follows in a sequence diagram:
class CalcController
{
  ...
 public void Start()
  {
      this.Calculate();
  }
  public void Calculate()
  {
      calculatorObj.CalculateCase();
  }
  ...
}

The Calculate method above is modeled as a self-message and with"Extend Method Invocation" option checked, the problem I had was to embed message CalculateCase into the Calculate method.

Thanks a lot in advance.

Jie