Sorry, the User object should be 

public class User{

    private String account;
    public User(... String account, ...){ ... this.account = account; }
    ...
    public String getAccount(){
        return this.account
    }
   // public void setAccount(String account){
     //   this.account = account;
    //}
    ...
} 

Not the following ...

neo anderson wrote:
> 
> 
> public class User{
> 
>     private String account;
>     public User(... String account, ...){ ... this.account = account; }
>     ...
>     public String getAccount(){
>         return this.account
>     }
>     public void setAccount(String account){
>         this.account = account;
>     }
>     ...
> }
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Bean-editor-model-for-User-already-contains-a-property-model-for-property-%27account%27-tp25531292p25531294.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to