* Performs project initialization. Invoked by IDEA when the project is opened.
*/
public void projectOpened()
{
ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(project);
ToolWindow toolWindow = toolWindowManager.registerToolWindow(TOOL_WINDOW_ID, false, ToolWindowAnchor.BOTTOM);
pluginPanel = createPluginPanel();
ContentFactory contentFactory = PeerFactory.getInstance().getContentFactory();
Content content = contentFactory.createContent(pluginPanel, "", false);
toolWindow.getContentManager().addContent(content);
toolWindow.setIcon(toolWindowIcon);
}