Package org.openetcs.sysml2scade.transformation.wizard

Source Code of org.openetcs.sysml2scade.transformation.wizard.PerformTransformationHandler

/**
* Copyright 2014 Fraunhofer ESK & CEA list
*
* Licensed under the European Union Public Licence (EUPL), Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*       http://joinup.ec.europa.eu/software/page/eupl/licence-eupl
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Contributors:
*     Alexander Stante, Fraunhofer ESK - initial API and implementation
*     Matthieu Perin, CEA list - correction to cut link to changed utils classes
*/

package org.openetcs.sysml2scade.transformation.wizard;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.resources.IFile;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.papyrus.infra.onefile.model.IPapyrusFile;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.handlers.HandlerUtil;

import org.openetcs.common.IOUtil;
import org.openetcs.sysml2scade.transformation.Generator;

public class PerformTransformationHandler extends AbstractHandler {

  @Override
  public Object execute(ExecutionEvent event) throws ExecutionException {
    Shell shell = HandlerUtil.getActiveShell(event);
    IStructuredSelection selection = (IStructuredSelection) HandlerUtil.getCurrentSelectionChecked(event);
    Object object = selection.getFirstElement();
    IFile file;
   
    if (object instanceof IFile) {
      file = (IFile) object;
    } else if (object instanceof IPapyrusFile) {
      IPapyrusFile papyrusFile = (IPapyrusFile) object;
      file = IOUtil.getUMLFile(papyrusFile);
    } else {
      MessageDialog.openWarning(shell, "Transformation can't be called on: ", object.getClass().getName());
      return null;
    }
   
    try {
      Generator.start(file);
    } catch (Exception e) {
      MessageDialog.openError(shell,  "Error creating project", e.toString());
    }
   
    return null;
  }
}
TOP

Related Classes of org.openetcs.sysml2scade.transformation.wizard.PerformTransformationHandler

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.