blob: 17a95c81900155a199bf9ac4a872c5cf2098dbaf [file] [log] [blame]
/*******************************************************************************
* 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();
}
}
}