blob: 734e4c3b3405af03857a5191436804d3a831ed1b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
* 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:
* 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);
}
}