Beziehungen Code (2)
public abstract class PersonBean implements EntityBean {
public void addContact (ContactView contact)
throws createException {
try {
Contact c = createContact(contact.getId(),.....);
getContact().add(c);
} catch (CreateException e) {}
}