public class CheckStyleToolWindowFactory implements ToolWindowFactory {
@Override
public void createToolWindowContent(final Project project, final ToolWindow toolWindow) {
final Content toolContent = toolWindow.getContentManager().getFactory().createContent(
new CheckStyleToolWindowPanel(toolWindow, project),
IDEAUtilities.getResource("plugin.toolwindow.action", "Scan"),
false);
toolWindow.getContentManager().addContent(toolContent);