Package org.eclipse.egit.ui.internal.rebase

Source Code of org.eclipse.egit.ui.internal.rebase.PlanContextMenuAction

/*******************************************************************************
* Copyright (c) 2014 Vadim Dmitriev 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:
*    Vadim Dmitriev - initial implementation
*******************************************************************************/
package org.eclipse.egit.ui.internal.rebase;

import org.eclipse.egit.core.internal.rebase.RebaseInteractivePlan;
import org.eclipse.egit.core.internal.rebase.RebaseInteractivePlan.PlanElement;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.TreeViewer;

class PlanContextMenuAction extends Action {

  private RebaseInteractivePlan.ElementAction action;
  private TreeViewer planViewer;
  private RebaseInteractiveStepActionToolBarProvider actionToolbarProvider;

  public PlanContextMenuAction(String text, ImageDescriptor image,
      RebaseInteractivePlan.ElementAction action, TreeViewer planViewer,
      RebaseInteractiveStepActionToolBarProvider actionToolbarProvider) {
    super(text, image);
    this.action = action;
    this.planViewer = planViewer;
    this.actionToolbarProvider = actionToolbarProvider;
  }

  @Override
  public void run() {
    ISelection selection = planViewer.getSelection();
    if (selection instanceof IStructuredSelection) {
      IStructuredSelection structuredSelection = (IStructuredSelection) selection;
      for (Object selectedRow : structuredSelection.toList()) {
        if (selectedRow instanceof PlanElement) {
          PlanElement planElement = (PlanElement) selectedRow;
          planElement.setPlanElementAction(action);
        }
      }
      actionToolbarProvider.mapActionItemsToSelection(selection);
    }
  }
}
TOP

Related Classes of org.eclipse.egit.ui.internal.rebase.PlanContextMenuAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.