blob: 6ba4594b7b6d4392cef5b9cc5c5c2264a9fdfa69 [file] [log] [blame]
/*
* Copyright (c) 2014, 2018 CEA and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Kenn Hussey (CEA) - initial API and implementation
* Kenn Hussey - 535301
*
*/
package org.eclipse.uml2.uml.internal.resource;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.xmi.XMLHelper;
import org.eclipse.emf.ecore.xmi.XMLLoad;
import org.eclipse.emf.ecore.xmi.XMLSave;
import org.eclipse.uml2.uml.resource.CMOF242UMLResource;
public class CMOF242UMLResourceImpl
extends UMLResourceImpl
implements CMOF242UMLResource {
public CMOF242UMLResourceImpl(URI uri) {
super(uri);
}
@Override
protected XMLHelper createXMLHelper() {
return new CMOF2UMLHelperImpl(this);
}
@Override
protected XMLLoad createXMLLoad() {
return new CMOF242UMLLoadImpl(createXMLHelper());
}
@Override
protected XMLSave createXMLSave() {
return new CMOF2UMLSaveImpl(createXMLHelper());
}
}