blob: a5b2e593c4a41d46fa4e47004b0725047c52866b [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2013, 2017 CEA LIST.
*
* 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:
* CEA LIST - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.cdo.internal.core.exporter;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.papyrus.cdo.core.importer.IModelTransferConfiguration;
import org.eclipse.papyrus.cdo.core.importer.IModelTransferConfiguration.Factory;
import org.eclipse.papyrus.cdo.core.importer.IModelTransferOperation;
import org.eclipse.papyrus.cdo.internal.core.importer.ModelTransferConfiguration;
import org.eclipse.papyrus.cdo.internal.core.importer.ModelTransferConfiguration.Direction;
/**
* This is the DefaultModelExportConfigurationFactory type. Enjoy.
*/
public class DefaultModelExportConfigurationFactory implements Factory {
public DefaultModelExportConfigurationFactory() {
super();
}
@Override
public IModelTransferConfiguration create(IModelTransferOperation.Context operationContext, ResourceSet resourceSet) {
ModelTransferConfiguration result = new ModelTransferConfiguration(operationContext, resourceSet, Direction.EXPORT);
result.addModelDependentsProvider(new CDODIDependentsProvider());
return result;
}
}