Questions tagged [collaboration-diagram]

Collaboration diagram shows interaction between objects. It used to define relation and communication among objects and clarify their role.

Collaboration diagram shows interaction between objects. It used to define relation and communication among objects and clarify their role. For more info look for http://sce.uhcl.edu/helm/rationalunifiedprocess/process/modguide/md_coldm.htm

12 questions
9
votes
4 answers

What is the difference between collaboration diagram and communication diagram in UML?

What is the difference between collaboration diagram and communication diagram in UML? Are they the same diagram?
masoud ramezani
  • 22,228
  • 29
  • 98
  • 151
3
votes
1 answer

UML - objects represented in circles and squares, which is correct?

Hi I run into these different types of reprsenting an object in uml diagrams and was wondering which is the correct one or the most used one? The following pictures are examples of collaboration diagrams one on which the objects are circles…
1
vote
1 answer

UML tool supporting collaboration

I am looking for an UML modeling tool (e.g. uml designer, papyrus, modelio or such) with a support for collaboration diagrams (as described here : http://www.uml-diagrams.org/collaboration-diagrams/collaboration.html and here…
Manuel Leduc
  • 1,849
  • 3
  • 23
  • 39
1
vote
2 answers

Nice free tool to create UML Communication (=Collaboration) diagrams

UML 1 uses the name Collaboration Diagram. UML 2 uses the name Communication Diagram. In this link you can find the definition and one nice example. Here you can find a nice reference about how to create them. Unfortunately, I didn't find this…
chelder
  • 3,819
  • 6
  • 56
  • 90
0
votes
2 answers

Can I generate a collaboration diagram using sequence diagram in StarUML?

Is it possible to do this automatically?or do i have to do it manually?
namita
  • 115
  • 2
  • 3
  • 9
0
votes
1 answer

Does Collaboration/Communication Diagram have "OPT" fragment?

I have an OPT (Optional) fragment in my sequence diagram and I wanted to draw it on my collaboration diagram but unsure if there is such a thing as OPT fragmnet in collaboration? I googled and couldn't find any solutions. One of my friends told me…
0
votes
1 answer

Sequence Diagram to Communication Diagram

I have created a Sequence Diagram that I wish to convert to a Communication/Collaboration Diagram. I understand the conversion and the numbering process but I am wondering since my Sequence diagram have loops that are under the alt fragment, how is…
0
votes
0 answers

Sending conditional messages in a uml communication diagram

I want to represent the following pseudo-code in a communication diagram: A::someoperation(collection) Begin Foreach elem in collection: if condition_1 then: create B; else if condition_2 then: create C; else if…
0
votes
2 answers

Collaboration Diagrams: how to represent setting a variable's and attribute's value to a specified value

Let's assume I have a class called MyClass with an attribute called MyAttribute and a method called MyMethod(). Inside that method I'd like to have a variable called MyVariable. I'd like to set the value of MyVariable to "MyVariable" and MyAttribute…
devoured elysium
  • 101,373
  • 131
  • 340
  • 557
0
votes
2 answers

How to signal object instantiation in a Collaboration/Communication Diagram?

I'd like to know how to translate the following line of code to a Collaboration Diagram: Food food = new Food("abc", 123); I know that I can call an Food's method using the following notation: MyStaticMethod() ----------------------> -------- …
devoured elysium
  • 101,373
  • 131
  • 340
  • 557
0
votes
1 answer

UML Collaboration diagram for an emergency reporting system

I am working on some software modeling/design homework and I'm having trouble wrapping my head around how to turn this particular use case into a Collaboration diagram. I found this excellent tutorial, but the use case I am studying introduces a…
Jefferson Hudson
  • 728
  • 1
  • 10
  • 22
0
votes
1 answer

Are subclasses considered collaborators of their superclasses?

If you have, say, an abstract XMLParser class that you extend to make XMLParser1 and XMLParser2, is XMLParser a collaborator of XMLParser1 and XMLParser2?
Outback
  • 542
  • 2
  • 8
  • 20