[Xdoclet-user] big problem with update methods of value objects

2004-08-29 Thread Marcus Beyer
Hello all! Lets say I have an existing value object myPersonValue and create a new value object myCarValue = new CarValue() and do myPersonValue.addCarValue(myCarValue). Then (not yet persisted, still the same objects) the user decides to change the color of myCarValue(), e.g.

Re: [Xdoclet-user] Re: Nonfunctional package substitution

2004-04-27 Thread Marcus Beyer
With which version of XDoclet did you get package substitution for value objects to work? 1.2.0 (the one included in current MyEclipse) [Viele Grüße, Marcus Beyer] http://www.Stormlight.de --- This SF.net email is sponsored

Re: [Xdoclet-user] Nonfunctional package substitution

2004-04-26 Thread Marcus Beyer
/PackageSubstitution /entitycmp [Viele Grüße, Marcus Beyer] http://www.Stormlight.de --- This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek For a limited time only, get FREE Ground shipping on all orders of $35 or more. Hurry up and shop folks

Re: [Xdoclet-user] XDoclet plugin for Eclipse

2004-04-26 Thread Marcus Beyer
/ [Viele Grüße, Marcus Beyer] http://www.Stormlight.de --- This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek For a limited time only, get FREE Ground shipping on all orders of $35 or more. Hurry up and shop folks, this offer expires

Re: [Xdoclet-user] Re: pleeeeease! session facade without data objects

2004-03-17 Thread Marcus Beyer
Konstantin Priblouda wrote: session facades were designed to work with data objects ( because original developer - it was me - never needed or used value objects but data objects ) I wonder why the generated code uses also value objects then. Looks like a very wild mixture. I don't

Re: [Xdoclet-user] value-object: problems with extends attribute!

2004-03-09 Thread Marcus Beyer
Harkness, David wrote: Marcus Beyer wrote: * @ejb.value-object * name=Person * match = * * extends = PersonListItemValue The problem: the second extends always gets ignored, i.e. both value-object classes extends the same class. Is this a bug?? Please help! What happens if you fully

[Xdoclet-user] value-object: problems with extends attribute!

2004-03-05 Thread Marcus Beyer
Hi all, I have this inside my EJB: * @ejb.value-object * name = PersonListItem * match = ListItem * extends = java.lang.Object * * @ejb.value-object * name=Person * match = * * extends = PersonListItemValue The problem: the second extends always gets ignored, i.e. both

Re: [Xdoclet-user] relations + value objects = my problems ;)

2004-02-12 Thread Marcus Beyer
[EMAIL PROTECTED] wrote: Good point, Marcus. I have noticed exactly the same. It looks like xDoclet process only one VO for CMR. please vote for its fixing: http://opensource.atlassian.com/projects/xdoclet/secure/ViewIssue.jspa?key=XDT-567 thanx! Marcus

Re: [Xdoclet-user] relations + value objects = my problems ;)

2004-02-05 Thread Marcus Beyer
Harkness, David wrote: Marcus Beyer wrote: What I want to do is: myLicenceValue.getCustomerValue() myLicenceListItemValue.getCustomerListItemValue() So I write in LicenceBean: /** [...] * @ejb.value-object * aggregate=foo.CustomerValue * aggregate-name=CustomerValue

[Xdoclet-user] relations + value objects = my problems ;)

2004-02-03 Thread Marcus Beyer
Hello all, I am new to XDoclet, so please be merciful :] I have two EBJs: LicenceBean and CustomerBean. For each EJB I have two VO classes: LicenceValue and LicenceListItemValue CustomerValue and CustomerListItemValue What I want to do is: myLicenceValue.getCustomerValue()