
What do the diagram's multiplicity values mean? Do they mean each ShoeStore must have 1 instance of NikeShoes, and that the same instance can be part of many ShoeStore instances? In other words, many ShoeStores might have the same pair of shoes (an instance, not the type) to sell? Thanks.
The
1multiplicity is a defined shortcut for1..1, meaning that every instance ofShoeStoremust have at minimum and and maximum 1 instance ofNikeShoe.The reverse
*multiplicity is a defined shortcut for0..*which means that an instance ofNikeShoecan be part minimum 0 and maximum an infinity of instances ofShoeShop.