I was wondering if there is something I'm missing, or if Betwixt just
  can't do it as is. Given the following XML:
<Element>
  <name>Element 1</name>
  <value>
    <Integer>5</Integer
  </value>
</Element>

and the following bean mapped to the "Element" XML element:

public class ElementBean {
  private String mName;
  private Object mValue;

  public ElementBean() {
  }

  public void setName(String iName) {
    mName = iName;
  }

  public String getName() {
    return mName;
  }





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to