I’m sorry if the title is not clear enough. FYI, I’m trying to make an UML diagram from a class. Here’s a snippet of the class:
class ItemDisplay {
Item currentItem;
Item[] suggestedItems;
Item[] randomlySelectedItems;
}
How do I have to draw the associations of this class? Should I draw 3 separate associations with the same classes or just one but many multiplicities?
Thanks.