blob: 9ebffdc90f276c59ea1bf7ec0b375ada2f7d6c92 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2017 CEA LIST and Others.
*
*
* 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:
* Nicolas FAUVERGUE (CEA LIST) nicolas.fauvergue@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.interoperability.sysml14.sysml.wizard;
import org.eclipse.papyrus.interoperability.common.wizard.pages.AbstractDialogData;
/**
* This allows to defined the extensions needed for the migration.
*/
public class TransformationSysMLDialogData extends AbstractDialogData {
/**
* {@inheritDoc}
*
* @see org.eclipse.papyrus.migration.common.wizard.pages.AbstractDialogData#getExtensions()
*/
@Override
public String[] getExtensions() {
return new String[] { "*.di", "*" };
}
/**
* {@inheritDoc}
*
* @see org.eclipse.papyrus.migration.common.wizard.pages.AbstractDialogData#getExtensionsNames()
*/
@Override
public String[] getExtensionsNames() {
return new String[] { "*.di", "*" };
}
}