Hello Martin,

this would be ok, but that method doesn't exist in StrutsTypeConverter as of struts 2.0.11, and most likely the framework won't call it when I implement it. Or am I missing something?

Daniel

Martin Gainty wrote:
package org.apache.struts2.showcase.conversion
public class EnumTypeConverter extends StrutsTypeConverter {
//old methods..

//new method to convert map contents to Strings..
 @Override
public String[] convertToStrings(Map context, Object o) {
       int j=0;
       Strings[] s;
        List l = (List) o;
        String result ="<";
for (Iterator i = l.iterator(); i.hasNext(); ) {
          s[j++]=i.next();
        }
        return s;
    }
//...other methods..
}


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to