Return-Path: Mailing-List: contact commons-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list commons-user@jakarta.apache.org Received: (qmail 99018 invoked from network); 4 Apr 2003 04:48:39 -0000 Received: from dsl081-120-228.dfw1.dsl.speakeasy.net (HELO mail.Transmorphix.com) (64.81.120.228) by daedalus.apache.org with SMTP; 4 Apr 2003 04:48:39 -0000 Received: (qmail 555 invoked by uid 99); 4 Apr 2003 04:48:49 -0000 Received: from 192.168.10.105 (SquirrelMail authenticated user brian@transmorphix.com) by mail.Transmorphix.com with HTTP; Thu, 3 Apr 2003 22:48:49 -0600 (CST) Message-ID: <2291.192.168.10.105.1049431729.squirrel@mail.Transmorphix.com> Date: Thu, 3 Apr 2003 22:48:49 -0600 (CST) Subject: [betwixt] BeanReader - setXXX(Object) From: "Brian K. Wallace" To: X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal Reply-To: brian@transmorphix.com X-Mailer: SquirrelMail (version 1.2.6) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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 1 5 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; }