Re: No getter method for property... but present

2002-02-14 Thread Philippe Hodapp / 1genia
i had the same message. Add a beanInfo == - Original Message - From: João Paulo G. Batistella [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, February 05, 2002 4:01 PM Subject: Re: No getter method for property... but present You are using

No getter method for property... but present

2002-02-05 Thread Tom Goemaes
Hi, in my bean i have among others: public void setEconomicActivities(String newEconomicActivities) public List getEconomicActivities() public void setDomains(String newDomains) public List getDomains() Both setters perform a tokenizer operation on the provided string, and both getters return

Re: No getter method for property... but present

2002-02-05 Thread João Paulo G. Batistella
You are using List for get and String for set method. You should use the same type for both methods. JP public void setEconomicActivities(String newEconomicActivities) public List getEconomicActivities() public void setDomains(String newDomains) public List getDomains() Tom Goemaes wrote:

Re: No getter method for property... but present

2002-02-05 Thread Tom Goemaes
but it work fine for public void setDomains(String newDomains) public List getDomains() how do you explain that ? You are using List for get and String for set method. You should use the same type for both methods. JP public void setEconomicActivities(String newEconomicActivities) public