[jboss-user] [JBoss Seam] - Re: What the heck!!!!????

tynor do-not-reply at jboss.com
Tue Oct 2 17:15:14 EDT 2007


Though named as a getter, your getter has the interface of a setter. try changing it from: 


  |       public void getAgencyIncidentTypes( Agency selectedAgency )
  |       {
  |          this.agencyIncidentTypes = selectedAgency.getAgencyIncidentTypes();
  |       }
  | 
to

  |       public Agency getAgencyIncidentTypes()
  |       {
  |          return selectedAgency.getAgencyIncidentTypes();
  |       }

Keep the faith!


View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4090827#4090827

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4090827



More information about the jboss-user mailing list