blob: 8ef53886020cd09465c40eb572e1700e6582121c [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2014 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.portfolio.genchain.tools.ui.actions;
import org.eclipse.core.resources.IFile;
import org.eclipse.emf.common.util.URI;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
/**
*
* @author Thomas Guiu
*/
public class BuildApplicationAction extends CreateFcoreAction {
private IStructuredSelection selection;
public void run(IAction action) {
IFile modelFile = (IFile) selection.getFirstElement();
URI modelURI = URI.createPlatformPluginURI(modelFile.getFullPath().toString(), false);
convertProject(modelFile.getProject());
BuildApplicationHelper.INSTANCE.build(modelURI);
}
public void selectionChanged(IAction action, ISelection selection) {
this.selection = (IStructuredSelection) selection;
super.selectionChanged(action, selection);
}
}