Hi,
suppose I have an embedded persistent object Address part of a persistent
object Company. What should be printed for the following code

Address address = company.getAddress();
System.out.println("persistent: " + JDOHelper.isPersistent(address));
pm.evict(address);
System.out.println("persistent: " + JDOHelper.isPersistent(address));


kind regards,
Christiaan
-- 
View this message in context: 
http://www.nabble.com/Embedded-object-and-evict-tp22738918p22738918.html
Sent from the JDO - Development mailing list archive at Nabble.com.

Reply via email to