blob: 5ee27c18109fa9d6d69ae0e00b00f4c912f68823 [file] [log] [blame]
/*
* Copyright (c) 2007, 2018 IBM Corporation 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 (IBM Corporation) - 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.CMOF2UMLResource;
public class CMOF2UMLResourceImpl
extends UMLResourceImpl
implements CMOF2UMLResource {
public CMOF2UMLResourceImpl(URI uri) {
super(uri);
}
@Override
protected XMLHelper createXMLHelper() {
return new CMOF2UMLHelperImpl(this);
}
@Override
protected XMLLoad createXMLLoad() {
return new CMOF2UMLLoadImpl(createXMLHelper());
}
@Override
protected XMLSave createXMLSave() {
return new CMOF2UMLSaveImpl(createXMLHelper());
}
}