/******************************************************************************* * Copyright (c) 2010 xored software, Inc. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * xored software, Inc. - initial API and Implementation (Alex Panchenko) *******************************************************************************/ package org.eclipse.dltk.logconsole.ui; import org.eclipse.core.runtime.Assert; import org.eclipse.jface.action.IToolBarManager; import org.eclipse.ui.IActionBars; import org.eclipse.ui.console.IConsole; import org.eclipse.ui.console.IConsoleConstants; import org.eclipse.ui.console.IConsolePageParticipant; import org.eclipse.ui.part.IPageBookViewPage; public class LogConsolePageParticipant implements IConsolePageParticipant { public void activated() { } public void deactivated() { } public void dispose() { } public void init(IPageBookViewPage page, IConsole console) { Assert.isLegal(console instanceof LogConsoleImpl); IActionBars bars = page.getSite().getActionBars(); IToolBarManager toolbarManager = bars.getToolBarManager(); toolbarManager.appendToGroup(IConsoleConstants.LAUNCH_GROUP, new CloseLogConsoleAction(console)); } public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) { return null; } }