blob: 75e3bd839a8b8329dc26d2d7c3dd0588874d1ddd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2017 xored software, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* 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 {
@Override
public void activated() {
}
@Override
public void deactivated() {
}
@Override
public void dispose() {
}
@Override
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));
}
@Override
public <T> T getAdapter(Class<T> adapter) {
return null;
}
}