[Objectbridge-jdo-dev] Relationships in objects/data
Brought to you by:
thma
From: <tr...@th...> - 2002-05-14 04:39:22
|
How does OJB handle things like: public class Person { String Name; Address myAddress; } public class Address { String street1; String street2; String city; String state; String zip; } Would the address instance in a person instance be persistent if you stored the person instance? Or what if that person class looked like this: public class Person { String Name; java.util.List addresses; // list of address objects } Does ojb have any way of dealing with that? Travis Reeder Chief Software Architect www.ThinkVirtual.com |