I'm implementing yet another variable contributor factory and look for a
way to report messages to 'problems' view. 'Problems' list from
'internalCreate' method seems to be good candidate, but I followed
execution stacktrace and found something like this:
if(...)
{
List problems = new ArrayList();
>factory.create(..., problems);
}
note: method name was another, i just don't remember it for sure :)
Seems that 'problems' list is not used to add new messages to 'problems'
view. It is not used for anything useful at all. Maybe there is a way to
get current instance of IReporter? I haven't found one :(