Package org.eclipse.php.internal.ui.actions

Source Code of org.eclipse.php.internal.ui.actions.ImportActionGroup

/*******************************************************************************
* Copyright (c) 2009 IBM Corporation 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:
*     IBM Corporation - initial API and implementation
*     Zend Technologies
*******************************************************************************/
package org.eclipse.php.internal.ui.actions;

import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.Separator;
import org.eclipse.php.internal.ui.IContextMenuConstants;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.actions.ActionGroup;
import org.eclipse.ui.actions.ExportResourcesAction;
import org.eclipse.ui.actions.ImportResourcesAction;

public class ImportActionGroup extends ActionGroup {

  private static final String GROUP_IMPORT = "group.import"; //$NON-NLS-1$

  private ImportResourcesAction fImportAction;
  private ExportResourcesAction fExportAction;

  /**
   * Creates a new <code>ImportActionGroup</code>. The group requires that the
   * selection provided by the part's selection provider is of type
   * <code>org.eclipse.jface.viewers.IStructuredSelection</code>.
   *
   * @param part
   *            the view part that owns this action group
   */
  public ImportActionGroup(IViewPart part) {
    IWorkbenchWindow workbenchWindow = part.getSite().getWorkbenchWindow();
    fImportAction = new ImportResourcesAction(workbenchWindow);
    fExportAction = new ExportResourcesAction(workbenchWindow);
  }

  /*
   * (non-Javadoc) Method declared in ActionGroup
   */
  public void fillContextMenu(IMenuManager menu) {
    menu.appendToGroup(IContextMenuConstants.GROUP_REORGANIZE,
        new Separator(GROUP_IMPORT));
    menu.appendToGroup(GROUP_IMPORT, fImportAction);
    menu.appendToGroup(GROUP_IMPORT, fExportAction);
    super.fillContextMenu(menu);
  }

  /**
   * {@inheritDoc}
   */
  public void dispose() {
    fImportAction.dispose();
    fExportAction.dispose();
    super.dispose();
  }
}
TOP

Related Classes of org.eclipse.php.internal.ui.actions.ImportActionGroup

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.