Re: Extending Action Mapping

2005-02-09 Thread Todd Nine
t; requirement for properties. > >> > >> By the way, "LaserActionMapping" is the coolest action classname I've ever > >> seen. If there was an award for these things, I think you would win :o) > >> > >> -Original Message- > &

Re: Extending Action Mapping

2005-02-08 Thread Joe Germuska
y, February 08, 2005 3:20 PM To: Struts Users Mailing List Subject: Extending Action Mapping Hi all, I am trying to extend the ActionMapping Class with my own, LaserActionMapping. I have a List that I want to populate with MessageResource keys,. I have the configuration below, and my class. The

RE: Extending Action Mapping

2005-02-08 Thread Fogleson, Allen
A workaround - albeit maybe not the best public void setAddIgnore(String value) { ignore.add(value); } public void setIgnore(List value) { this.ignore = value; } /** * @return A list of keys to ignore */ public List getIgnore() { return ignore; } then instead of use I don't like

Re: Extending Action Mapping

2005-02-08 Thread Todd Nine
ionMapping" is the coolest action classname I've ever > seen. If there was an award for these things, I think you would win :o) > > -Original Message- > From: Todd Nine [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 08, 2005 3:20 PM > To: Struts Users Mailing L

RE: Extending Action Mapping

2005-02-08 Thread Benedict, Paul C
these things, I think you would win :o) -Original Message- From: Todd Nine [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 08, 2005 3:20 PM To: Struts Users Mailing List Subject: Extending Action Mapping Hi all, I am trying to extend the ActionMapping Class with my own, LaserActionMapping.

Extending Action Mapping

2005-02-08 Thread Todd Nine
Hi all, I am trying to extend the ActionMapping Class with my own, LaserActionMapping. I have a List that I want to populate with MessageResource keys,. I have the configuration below, and my class. The setter is never being called, does anyone have any suggestions?