nTo establish a relation during creation:
uif the relation exists already, it is provided as an argument to the source constructor.
nExample:
npublic
class Person
{
n public Person (…, Person mother, …) {
n …
n this.mother = mother;
n …
n }
n …
n private Person mother;//This person’s mother
n …
n}
// end of class Person