blob: a6769254659bcfbbdda3e668d5e6b2d7d701db40 [file] [log] [blame]
/*
* Copyright (c) 2006, 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:
* IBM - 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.XMLLoad;
import org.eclipse.uml2.uml.resource.UML22UMLResource;
public class UML22UMLResourceImpl
extends UMLResourceImpl
implements UML22UMLResource {
public UML22UMLResourceImpl(URI uri) {
super(uri);
}
@Override
protected XMLLoad createXMLLoad() {
return new UML22UMLLoadImpl(createXMLHelper());
}
}