blob: e2971f6823c041e5680bb5f491c601c7717d254b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies 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
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.team.ui.actions;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.navigator.CommonActionProvider;
import org.eclipse.ui.navigator.ICommonMenuConstants;
/**
* @author Mik Kersten
*/
public class TaskResourceMappingActionProvider extends CommonActionProvider {
private final OpenCorrespondingTaskAction openCorrespondingAction = new OpenCorrespondingTaskAction();
private final AddToTaskContextAction addToTaskContextAction = new AddToTaskContextAction();
@Override
public void fillContextMenu(IMenuManager menuManager) {
IStructuredSelection selection = (IStructuredSelection) getContext().getSelection();
openCorrespondingAction.selectionChanged(openCorrespondingAction, selection);
addToTaskContextAction.selectionChanged(addToTaskContextAction, selection);
menuManager.insertAfter(ICommonMenuConstants.GROUP_ADDITIONS, openCorrespondingAction);
menuManager.insertAfter(ICommonMenuConstants.GROUP_ADDITIONS, addToTaskContextAction);
}
}