--
You received this message because you are subscribed to the Google Groups "ValidateThis-dev" group.
To post to this group, send email to validate...@googlegroups.com.
To unsubscribe from this group, send email to validatethis-d...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/validatethis-dev?hl=en.
I can see what you're trying to achieve, but using returning a struct
of the variables scope is a bad idea as it is not stable (subject to
change and you'd be also including "private" instance data that the
outside world does not need to know about). Transfer had a getMemento
method and lots of people used it only for Mark to change the private
instance data structure and break a lot of apps. Not Mark's fault as
he never thought people would use it (and I think did even warn them
not to).
Get you proxy method to do something like (not tested!):
result = super.process(argumentCollection=arguments);
return result.validationresult.hasErrors();
- John