RE: [Xdoclet-user] Help me using ValueObjects

2004-02-03 Thread Harkness, David
[EMAIL PROTECTED] wrote: > I checked everything, but I still get a null when I try to > get the valueObject out of the appropriate getter-method. > Yes, I have included im my xdoclet-build.xml. I only see one thing there that looks suspect: you are naming your methods differently from your value

RE: [Xdoclet-user] Help me using ValueObjects

2004-01-31 Thread Harkness, David
[EMAIL PROTECTED] wrote: > [...] > > That procucet the class for me. Works. > > In my CMP bean, I include methods (tried several different > declarations): > > /** > * @ejb.interface-method > * @ejb.value-object > */ > public abstract RealEstateDataAllValue getRealEstateEntryValue(); > > /** >

Re: [Xdoclet-user] Help me using ValueObjects

2004-01-31 Thread kkaal
I tried this, but it does not work.   Obviously, the CMP interprets the column-name as a SQL column-name and includes this in its statement. I get the result, that RealEstateEntryValue is not a valid column-name in the table.   Sorry, I nee another advice.   But thanks for your thought an

Re: [Xdoclet-user] Help me using ValueObjects

2004-01-29 Thread kenneth_aitken
I believe you need to indicate that the values are persistent. So try inserting the following tags: [EMAIL PROTECTED] * column-name="RealEstateEntryValue" Thus: /** * @ejb.interface-method [EMAIL PROTECTED] * column-name="RealEstateEntryValue" * @ejb.value-object */ public abstract RealEstateD