Add list type to association
Posted
by
teucer
on Stack Overflow
See other posts from Stack Overflow
or by teucer
Published on 2010-12-30T21:06:15Z
Indexed on
2010/12/31
11:54 UTC
Read the original article
Hit count: 144
Hi All,
I am using the eUML2 (Free version) plugin to draw a UML class diagram. Now, let's assume I have a class Person and a class Car. I want the class Person to have a member cars
which is a List<Car>
, i.e. private List<Car> cars = null
.
My question is how do I include this information in the class diagram? To be more precise, how do I include the type information for the List
in the eUML2 association?
Regards
© Stack Overflow or respective owner