So I am surprised that doing a search on google and stackoverflow doesn\'t return more results.
In OO programming (I\'m using java), how do you correctly implement a
Just implement some sort of collection in the object that has the other objects For example in customer you could say:
private List jobs;
then by using getters and setters you can add values jobs to this list. This is basic OO stuff, I don't think you searched enough on the internet. there is a lot of info available on these subjects.
Btw, you can use all sort of collections (Sets, Lists, Maps)