blob: 2baf52a851b0acf15453d251563b034f1a3d0f90 [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.resource;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.uml2.uml.internal.resource.XMI242UMLResourceFactoryImpl;
/**
* XMI resource required for model migration.
* OMG: UML 2.4.x and UML 2.5
* API: UML2 4.x and UML2 5.0
*
* @since 5.0
*/
public interface XMI242UMLResource
extends XMI2UMLResource {
public interface Factory
extends Resource.Factory {
public static final Factory INSTANCE = new XMI242UMLResourceFactoryImpl();
}
}