blob: 76be1dc5ae95488cba19bec578af06c48014a154 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2017 IBM Corporation and others.
* 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
*
*******************************************************************************/
package org.eclipse.dltk.validators.internal.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 ValidatorsConsolePageParticipant
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 ValidatorConsole);
Assert.isLegal(ValidatorConsole.TYPE.equals(console.getType()));
IActionBars bars = page.getSite().getActionBars();
IToolBarManager toolbarManager = bars.getToolBarManager();
toolbarManager.appendToGroup(IConsoleConstants.LAUNCH_GROUP,
new CloseValidatorsConsoleAction((ValidatorConsole) console));
toolbarManager.appendToGroup(IConsoleConstants.LAUNCH_GROUP,
new RemoveAllValidatorConsolesAction());
bars.getMenuManager().add(new ShowCommandLineValidatorsConsoleAction(
page, (ValidatorConsole) console));
}
@Override
public <T> T getAdapter(Class<T> adapter) {
return null;
}
}