blob: f5ee0b0fa9f0d11e3172a6d1f227236121394bd1 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2019 CEA LIST, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Nicolas FAUVERGUE (CEA LIST) nicolas.fauvergue@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.interoperability.sysml16.sysml14.wizard;
import org.eclipse.papyrus.interoperability.sysml16.sysml14.messages.Messages;
import org.eclipse.papyrus.interoperability.sysml16.sysml14.transformations.SysMLImportTransformationLauncher;
import org.eclipse.papyrus.uml.m2m.qvto.common.MigrationParameters.ThreadConfig;
import org.eclipse.papyrus.uml.m2m.qvto.common.transformation.AbstractImportTransformationLauncher;
import org.eclipse.papyrus.uml.m2m.qvto.common.wizard.AbstractTransformationWizard;
import org.eclipse.swt.widgets.Control;
/**
* The wizard for the SysML Migration.
*/
public class TransformationSysMLWizard extends AbstractTransformationWizard {
/**
* Constructor.
*/
public TransformationSysMLWizard() {
super(Messages.TransformationSysMLWizard_WizardTitle, new TransformationSysMLDialogData());
}
/**
* {@inheritDoc}
*
* @see org.eclipse.papyrus.migration.common.wizard.AbstractTransformationWizard#createTransformationLauncher(org.eclipse.papyrus.migration.common.MigrationParameters.Config, org.eclipse.swt.widgets.Control)
*/
@Override
protected AbstractImportTransformationLauncher createTransformationLauncher(final ThreadConfig config, final Control baseControl) {
return new SysMLImportTransformationLauncher(config, baseControl);
}
}