RE: [Xdoclet-devel] Pulled and re-released beta 3

2003-06-18 Thread Raible, Matt
I've tested it - looks good. Matt -Original Message- From: BOGAERT Mathias [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 4:33 AM To: '[EMAIL PROTECTED]' Subject: [Xdoclet-devel] Pulled and re-released beta 3 Importance: High Guys, Could you test the 1.2 beta 3 release on Sou

[Xdoclet-devel] [struts-validator] generating duplicate arg0 keys

2003-04-04 Thread Raible, Matt
I have the following that I'm using to generate a validator rule: * @struts.validator type="requiredif" * @struts.validator-var name="field[0]" value="state" * @struts.validator-var name="fieldTest[0]" value="EQUAL" * @struts.validator-var name="fieldValue[0]" value="940" This

[Xdoclet-devel] Creating a StrutsForm with IndexedProperties

2003-01-16 Thread Raible, Matt
I have a POJO that I'm using for Hibernate, and it's marked up with @hibernate and @struts.form tags. This all works fine with XDoclet, until I add indexed properties. I want to add setter methods that allow indexed properties for use on my Struts Form (POJO shouldn't care). The reason is b/c I

[Xdoclet-devel] RE: [Hibernate] Can I put common fields in a Base Class?

2003-01-07 Thread Raible, Matt
I was able to get the latest CVS Tree using CVSGrab. Konstantin - this feature works like a charm - thanks for such great work. Matt -Original Message- From: Raible, Matt Sent: Tuesday, January 07, 2003 12:22 PM To: xdoclet-devel Subject: RE: [Hibernate] Can I put common fields in a

[Xdoclet-devel] RE: [Hibernate] Can I put common fields in a Base Class?

2003-01-07 Thread Raible, Matt
rom: Konstantin Priblouda [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 9:57 AM To: Raible, Matt Cc: hibernate-devel; xdoclet-devel Subject: Re: [Hibernate] Can I put common fields in a Base Class? --- "Raible, Matt" <[EMAIL PROTECTED]> wrote: > I apologize for

[Xdoclet-devel] Creating a composite-id for Hibernate

2002-12-31 Thread Raible, Matt
Is it possible to use Hibernate to create a composite-id for Hibernate? I tried adding @hibernate.id tags to two different fields and didn't have any luck - it generated two different id elements, which fails DTD validation. Thanks, Matt ---

[Xdoclet-devel] Can I put common fields in a Base Class?

2002-12-30 Thread Raible, Matt
I apologize for the cross-post, but I feel this applies to both Hibernate and XDoclet. If I should only post to one list in the future - let me know which one is appropriate. I have four common audit fields in a number of my classes: private String createdBy; private Date dateCreated;

RE: [Xdoclet-devel] generating Strings for all elements in astru ts form

2002-12-26 Thread Raible, Matt
> -Original Message- > From: Erik Hatcher [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 26, 2002 11:44 AM > To: Raible, Matt > Cc: '[EMAIL PROTECTED]' > Subject: Re: [Xdoclet-devel] generating Strings for all elements in a > struts form >

[Xdoclet-devel] generating Strings for all elements in a struts form

2002-12-26 Thread Raible, Matt
I am using the task to generate a struts' form from a Hibernate object. I'm having a problem where I have a couple of Long variables that are Long's in my StrutsForm. How can I change this so all variables in the StrutsForm are Strings? Thanks, Matt -