blob: b6dbbd74e85c7cff54c1b91bf3a689062e5f195a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 E.D.Willink 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.qvt.oml.emof.ImperativeOCL.util;
import org.eclipse.qvt.declarative.ecore.adapters.AdaptingXMIResourceFactory;
import org.eclipse.qvt.declarative.ecore.mappings.IMappingMetaDataRegistry;
import org.eclipse.qvt.declarative.emof.EMOF.EMOFPackage;
public class ImperativeOCLResourceFactoryImpl extends AdaptingXMIResourceFactory
{
public ImperativeOCLResourceFactoryImpl() {
super(EMOFPackage.eINSTANCE, ImperativeOCLMappingMetaData.INSTANCE);
}
public ImperativeOCLResourceFactoryImpl(IMappingMetaDataRegistry mappingMetaDataRegistry) {
super(mappingMetaDataRegistry, ImperativeOCLMappingMetaData.INSTANCE);
}
}