I am reading Autosar document and in one of the document (Autosar_TemplateModelingGuideline.pdf), it says that:
Composite aggregation, forming a whole-part relationship
Regular association, expressing a reference from the associating to the associated model element
My question is: what is the difference between these two in practice? How do I have to interpret them in a class diagram, e.g. the Com Module
in Autosar.:
The AUTOSAR COM module’s Configuration Overview
Consider Specified class ComGwSignalRef
surrounded with a red rectangle. This class has a composition relation with ComGwSignalRef
class and two regular association with ComGroupSignal
and ComSignal
.
How would you interpret this as a developer and how do you implement in C?
if regular association is a reference to an object that has independent life from
ComGwSignalRef
why designer do not useinstanceRef
here?if it is not a reference, why did the designer not use composition?
PS. There is a concept in Autosar "InstanceRef" which is used for reference for independent object with independent lifecycle.