Reputation: 139
I need to draw a diagram but I am not sure what sort of diagram that is appropriate for my application.
It is a mobile application that contains:
The Gallery has contain all the images/photos that is stored on the device.
Can anyone suggest what sort of UML that is appropriate for this application? Is it Use Case Diagram? or Sequence Diagram?
Thanks in advance.
Upvotes: 3
Views: 2629
Reputation: 4787
In my opinion, you should be clear about what you're trying to achieve before generating documentation, otherwise you can end up with heaps of useless charts and diagrams.
If I were you, I'd use a Class Diagram with a Use Case diagram.
The Class Diagram will help you and other technically-minded people to understand how your code fits together.
Then use a Use Case Diagram to show the flow of typical use of your program. This should be understandable by anyone.
Upvotes: 0
Reputation: 251
Hi every application/project requires activity diagram for its final implementation besides usecase,sequence,statechart.Heres the link hope this will help you http://www.tutorialspoint.com/uml/uml_activity_diagram.htm
Upvotes: 1