Hello I'm trying to model a relationship between to entity beans in MagicDraw. The entities is named category and product and it is supposed to be in a one to many relationship. Even though I put a multiplicity of many (*) on the product side of the association I still get these methods in the category bean:
public abstract Product getProduct(); public abstract void setProduct(Product product); I would like them declared as: public abstract Collection getProduct(); public abstract void setProduct(Collection products); Somehow it doesn't seem to be recognized like a one-many relationship. What am I missing here? Thanks in advance /Magnus ------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click _______________________________________________ Andromda-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/andromda-user
