KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > mapping > ecore2ecore > util > Ecore2EcoreResourceImpl


1 /**
2  * <copyright>
3  *
4  * Copyright (c) 2004-2005 IBM Corporation and others.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM - Initial API and implementation
12  *
13  * </copyright>
14  *
15  * $Id: Ecore2EcoreResourceImpl.java,v 1.4 2005/06/08 06:21:24 nickb Exp $
16  */

17 package org.eclipse.emf.mapping.ecore2ecore.util;
18
19
20 import org.eclipse.emf.common.util.URI;
21
22 import org.eclipse.emf.ecore.xmi.impl.XMIResourceImpl;
23
24
25 /**
26  * <!-- begin-user-doc -->
27  * The <b>Resource </b> associated with the package.
28  * <!-- end-user-doc -->
29  * @see org.eclipse.emf.mapping.ecore2ecore.util.Ecore2EcoreResourceFactoryImpl
30  * @generated
31  */

32 public class Ecore2EcoreResourceImpl extends XMIResourceImpl
33 {
34   /**
35    * Creates an instance of the resource.
36    * <!-- begin-user-doc -->
37    * <!-- end-user-doc -->
38    * @param uri the URI of the new resource.
39    * @generated
40    */

41   public Ecore2EcoreResourceImpl(URI uri)
42   {
43     super(uri);
44   }
45
46 } //Ecore2EcoreResourceFactoryImpl
47
Popular Tags