protected LinkFactory newLinkFactory(IRequestCycle cycle, Map parameters, boolean stateful,
ILink link)
{
MockControl control = newControl(LinkFactory.class);
LinkFactory lf = (LinkFactory) control.getMock();
lf.constructLink(cycle, parameters, stateful);
control.setReturnValue(link);
return lf;
}