[betwixt] couple of questions

2005-01-19 Thread Jason Wood
1) is there a document describing the different attributes each element in a configuration file an contain? 2) has to do with List. When using a configuration if the addDefaults/ element is not present then all properties must be explicitly listed. For a List property to show up in the XML

[betwixt] collections and writing XML

2005-01-17 Thread Jason Wood
I am trying to write the following bean (OutterClass.java) to XML, but the resulting XML is not what I want. // base class for the two beans add to the collection public interface BaseClass { } // will be added to the collection public class DerivedClassA implements BaseClass { } public class

RE: [betwixt] Collection property question

2005-01-14 Thread Jason Wood
in the parse process. My add method on my class is never called. Matt Jason Wood wrote: I think you want this ... IntrospectionConfiguration.setWrapCollectionsInElement(false) Jason -Original Message- From: Matt Goodwin [mailto:[EMAIL PROTECTED] Sent: Thursday, January 13, 2005

RE: [betwixt] Collection property question

2005-01-13 Thread Jason Wood
I think you want this ... IntrospectionConfiguration.setWrapCollectionsInElement(false) Jason -Original Message- From: Matt Goodwin [mailto:[EMAIL PROTECTED] Sent: Thursday, January 13, 2005 11:02 AM To: Jakarta Commons Users List Subject: [betwixt] Collection property question I

RE: [betwixt] How can I make betwixt accept any attribute id as an element id?

2005-01-11 Thread Jason Wood
betwixt accept any attribute id as an element id? Jason Wood schrieb: Well, I know you can do the following to remove the betwixt id ... beanWriter.getBindingConfiguration().setMapIDs(false); Then if you want to make the getId() value of your bean an attribute

RE: [betwixt] How can I make betwixt accept any attribute id as an element id?

2005-01-07 Thread Jason Wood
do you want to make the id your from your bean an attribute or id the betwixt generated? -Original Message- From: Christian Aust [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 11:00 AM To: commons-user@jakarta.apache.org Subject: [betwixt] How can I make betwixt accept any

RE: [betwixt] How can I make betwixt accept any attribute id as an element id?

2005-01-07 Thread Jason Wood
with that approach. J -Original Message- From: Christian Aust [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 1:24 PM To: Jakarta Commons Users List Subject: Re: [betwixt] How can I make betwixt accept any attribute id as an element id? Hi Jason, Am 07.01.2005 um 18:10 schrieb Jason

[Betwixt] question

2005-01-04 Thread Jason Wood
New user. I want to produce the following xml and can't figure out how to accomplish this using .betwixt files. Any help would be appreciated. I read the getting started page (http://jakarta.apache.org/commons/betwixt/guide/start.html), Example 1 is what I want the example to look like. This is