Xander
Xander

Reputation: 9171

Alternatives to UML interaction diagrams

Any good alternatives to UML interaction diagrams? They are nice, but I do not care that much about the order and I want to represent a lot of components on the screen.

Upvotes: 1

Views: 903

Answers (2)

Christian
Christian

Reputation: 14061

If you want to model objects but not the interaction between them an Object Diagram may be suited. You can even combine them with Class Diagrams. Classes alone are not suited to represent instance level structures.

Upvotes: 1

Alon Adler
Alon Adler

Reputation: 4024

If you don't care about the order, I would suggest the possibility of using a UML Class Diagram. As this will present the classes/components of your project with the inheritance, relations and functionality of the classes, it doesn't give the order of events inside the system.

Here is an example for a Class Diagram:

enter image description here

A second possibility is going out from the UML world, and maybe using a mockup software to design the screen's actual look and components location. If that's what you need, Here is an example for a tool.

Upvotes: 2

Related Questions