214215216217218219220221222223224
} } } // converter Converter converter = null; if (converterAttr != null && converterAttr.length() > 0) { converter = (Converter) findValue(converterAttr); }
189190191192193194195196197198199
public Action getAction() { return new ActionSupport() { public Converter getMyConverter() { return new Converter() { public Object convert(String value) throws Exception { return "myConverter-"+value; } }; }
193194195196197198199200201202203
210211212213214215216217218219220
200201202203204205206207208209210
} public Action getAction() { return new ActionSupport() { public Converter getMyConverter() { return new Converter() { public Object convert(String value) throws Exception { return "myConverter-"+value; } }; }
216217218219220221222223224225226
212213214215216217218219220221222
192193194195196197198199200201202