I have an EMF model like the next one:
HardwareVerification -1-*-> Driver
HardwareVerification -0-*-> Environment
Environment -1-1-> Driver
Every time I create a instance of the EMF model I have to create a Driver in the environment and, another in the HardwareVerification, but what I need is to have the same Driver in both places.
For example:
h1 -> driver 1
h1 -> env1
env1 -> driver1
My question is: How should I model this? * I read that to manage links in EMF you can use another EClass with the source and target attribute.