blob: 7e74c7490597ab319565954c027ad18627566dc3 [file] [log] [blame]
/*
* Copyright (c) 2008 IBM Corporation, Embarcadero Technologies, 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:
* IBM - initial API and implementation
* Kenn Hussey (Embarcadero Technologies) - 232332
*
* $Id: XMI212UMLResource.java,v 1.2 2008/11/04 14:28:39 khussey Exp $
*/
package org.eclipse.uml2.uml.resource;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.uml2.uml.internal.resource.XMI212UMLResourceFactoryImpl;
/**
* XMI resource required for model migration.
* OMG: UML 2.1.x and UML 2.2
* API: UML2 2.2.x and UML2 3.0.x
*
* @since 3.0
*/
public interface XMI212UMLResource
extends XMI2UMLResource {
public interface Factory
extends Resource.Factory {
public static final Factory INSTANCE = new XMI212UMLResourceFactoryImpl();
}
}