ternary association is structural relationship specifies that Object of one thing connected to object of other two's
I understand this relationship but I have no idea how to implement methods that shows association between these three classes.
lets consider following example
- project has number of Developers who use particular programming language for development
- developer use particular programming language for develop number of projects
- in selected project one developer use only one programming language
There exists a ternary association between these three classes.
I've read on different sources regarding this all across the internet and couldn't find a solution
How do I implement above scenario in code (in java) ?
P.S - Not only this Any other ternary association coding example would be appreciate