blob: 95a5d901d3495845ee79610af07d54eb29fadd34 [file] [log] [blame]
/*
* Copyright (c) 2011 CEA 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:
* CEA - initial API and implementation
*
*/
package org.eclipse.uml2.uml.internal.resource;
import org.eclipse.uml2.uml.resource.UML302UMLResource;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.xmi.XMLLoad;
public class UML302UMLResourceImpl
extends UMLResourceImpl
implements UML302UMLResource {
public UML302UMLResourceImpl(URI uri) {
super(uri);
}
@Override
protected XMLLoad createXMLLoad() {
return new UML302UMLLoadImpl(createXMLHelper());
}
}