Java tutorial
/* * OCaml Support For IntelliJ Platform. * Copyright (C) 2010 Maxim Manuylov * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/gpl-2.0.html>. */ package manuylov.maxim.ocaml.toolWindow; import javax.annotation.Nonnull; import javax.annotation.Nullable; import com.intellij.execution.ExecutionException; import com.intellij.openapi.project.Project; import com.intellij.openapi.projectRoots.Sdk; import com.intellij.openapi.ui.Messages; import com.intellij.ui.content.Content; import com.intellij.ui.content.ContentManager; /** * @author Maxim.Manuylov * Date: 03.04.2010 */ class OCamlToolWindowUtil { public static void addAndSelectStartContent(@Nonnull final Project project, @Nonnull final ContentManager contentManager) { final OCamlToolWindowStartView view = new OCamlToolWindowStartView(project, contentManager); addAndSelectContent(contentManager, view, null, false); } public static void addAndSelectTopLevelConsoleContent(@Nonnull final Project project, @Nonnull final ContentManager contentManager, @Nonnull final Sdk topLevelSdk) { final OCamlTopLevelConsoleView view; try { view = new OCamlTopLevelConsoleView(project, contentManager, topLevelSdk); } catch (final ExecutionException e) { Messages.showErrorDialog(e.getLocalizedMessage(), "Error"); return; } addAndSelectContent(contentManager, view, "Top Level #" + view.getConsoleNumber(), true); } private static void addAndSelectContent(@Nonnull final ContentManager contentManager, @Nonnull final BaseOCamlToolWindowView view, @Nullable final String title, final boolean closable) { final Content content = contentManager.getFactory().createContent(view, title, false); content.setDisposer(view); content.setCloseable(closable); content.setPreferredFocusableComponent(view); contentManager.addContent(content); contentManager.setSelectedContent(content, true); } }