Rudolf
Rudolf

Reputation: 48

Class diagram to sequence diagram

I have a very strange exercise from school and I can't figure it out. I am supposed to change this class diagram (shown on picture) to sequence diagram. But it just doesn't make sense for me as long as it seems that this picture describes just one class.

enter image description here

Upvotes: 0

Views: 13024

Answers (1)

qwerty_so
qwerty_so

Reputation: 36333

As commented you can not really convert it, just invent an example. Since it looks like this is a Facade implementation, a good guess would be the following:

enter image description here

You can see that calls to the Facade are forwarded to the subsystems.

Upvotes: 4

Related Questions