DAO with a one-to-many relationship



I'm newby in JAVA. I need to write a DAO and all necessary classes to
implement an one-to-many relationship. For example:

Person
-----------
personId
personName

Phones
-----------
personId
phoneNumber
phoneDescription

where: person 1---N phones. Thanks in advance for any help.

.