Evening everyone.
I seem to have hit an odd problem when trying to pass an object to another objects constructor who\'s constructor also relies on the object it\'s being
Maybe if you declare first
WebPanel webPanel = new WebPanel(myToolBar);
and then
ToolBar myToolBar = new ToolBar(webPanel);
The object must exist first to be passed.