Re: [castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Andi Kuhn
Hi Keith, many thanks for your help. I already searched the archive, but was not able to find the thread :( I appreciate you sending the link again, Thanks, Andi Am Montag, 6. Mai 2002 20:44 schrieb Keith Visco: > I've given a number of examples on the past on how to do this. > > A simple

Re: [castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Keith Visco
es=com.myStuff.myTypes > > Then just run the generator against MySchema.xsd... I don't know if this is > a non-standard approach, but it has worked just great for me - > > Hope this helps - > Margaret > > -----Original Message- > From: Andi Kuhn [ma

Re: [castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Martin, Margaret
r against MySchema.xsd... I don't know if this is a non-standard approach, but it has worked just great for me - Hope this helps - Margaret -Original Message- From: Andi Kuhn [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 10:25 AM To: [EMAIL PROTECTED] Subject: [castor-dev] S

Re: [castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Keith Visco
type-safe enumerations. But for this case, it should work properly. Thanks, --Keith > > -Original Message- > From: Keith Visco [mailto:[EMAIL PROTECTED]] > Sent: Monday, May 06, 2002 1:44 PM > To: [EMAIL PROTECTED] > Subject: Re: [castor-dev] SourceGenerator using exist

Re: [castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Erik.Ostermueller
mechanisim. -Original Message- From: Keith Visco [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 1:44 PM To: [EMAIL PROTECTED] Subject: Re: [castor-dev] SourceGenerator using existing Class as type I've given a number of examples on the past on how to do this. A simple s

Re: [castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Keith Visco
-- > > From: Andi Kuhn [mailto:[EMAIL PROTECTED]] > > Sent: Monday, May 06, 2002 5:25 PM > > To: [EMAIL PROTECTED] > > Subject: [castor-dev] SourceGenerator using existing Class as type > > > > > > > > Hi, > > > > i have a problem using the So

Re: [castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Keith Visco
I've given a number of examples on the past on how to do this. A simple search on "using source generator with existing class" seems to do the the trick: http://www.mail-archive.com/castor-dev@exolab.org/msg05371.html --Keith Andi Kuhn wrote: > > Hi, > > i have a problem using the SourceGen

Re: [castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Arnaud Blandin
Hi Andy, The solution will be to use the Source Generator Binding File that will make the CVS very soon. Arnaud > -Original Message- > From: Andi Kuhn [mailto:[EMAIL PROTECTED]] > Sent: Monday, May 06, 2002 5:25 PM > To: [EMAIL PROTECTED] > Subject: [castor-dev] Source

[castor-dev] SourceGenerator using existing Class as type

2002-05-06 Thread Andi Kuhn
Hi, i have a problem using the SourceGenerator with alreasy existing types. I want to create a class e.g. Person that uses some other existing class as attribute and not just a primitive string or integer. public class Person { private com.mycompany.MyExistingClass myAttribute; pub