Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.