My object contains a one to many relation
public class Person implements Serializable {
//bi-directional many-to-one association to Address
@OneToMany(mappedBy="person", cascade={CascadeType.ALL}, fetch=FetchType.EAGER)
private List<Address> addresses = new ArrayList<Address>();
The corresponding ListStoreEditor is attached to a grid. On adding a new line to the grid, to let the jpa(Many to One) works, I need to pass the current Parent to the list. In my case:
Address o = new Address();
o.setPerson(p);
which means I have to pass the edited object to the editor.
private Person p = new Person();
PersonEditor pe = new PersonEditor(p);
driver.initialize(pe);
driver.edit(p);
Is there a faster and smarter way to do that?