The findSetter method in wicket.util.lang.PropertyResolver is defined as:
private final static Method findSetter(Method getMethod, Class
clz)
{
String name = getMethod.getName();
name = "set" + name.substring(3);
...
What if the getter method name is something like "isTrue" and setter like
"setIsTrue"? It won't be able to handle this situation right?
--
View this message in context:
http://www.nabble.com/findSetter-t1768813.html#a4814216
Sent from the Wicket - User forum at Nabble.com.
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user