Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 17a95c81900155a199bf9ac4a872c5cf2098dbaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*******************************************************************************
 * Copyright (c) 2013 Igor Fedorenko
 * 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:
 *      Igor Fedorenko - initial API and implementation
 *******************************************************************************/

package org.eclipse.m2e.core.ui.internal.actions;

import org.eclipse.core.resources.IProject;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.window.Window;

import org.eclipse.m2e.core.ui.internal.dialogs.AssignWorkingSetDialog;


/**
 * @since 1.5
 */
public class AssignWorkingSetAction extends MavenProjectActionSupport {

  public void run(IAction action) {
    IProject[] initialSelection = getProjects();

    AssignWorkingSetDialog dialog = new AssignWorkingSetDialog(getShell(), initialSelection);
    if(dialog.open() == Window.OK) {
      dialog.assignWorkingSets();
    }
  }

}

Back to the top