1 /** 2 * <copyright> 3 * 4 * Copyright (c) 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: Ecore2XMLResourceImpl.java,v 1.2 2005/06/21 16:17:03 khussey Exp $ 16 */ 17 package org.eclipse.emf.mapping.ecore2xml.util; 18 19 import org.eclipse.emf.common.util.URI; 20 21 import org.eclipse.emf.ecore.xmi.impl.XMIResourceImpl; 22 23 /** 24 * <!-- begin-user-doc --> 25 * The <b>Resource </b> associated with the package. 26 * @extends Ecore2XMLResource 27 * <!-- end-user-doc --> 28 * @see org.eclipse.emf.mapping.ecore2xml.util.Ecore2XMLResourceFactoryImpl 29 * @generated 30 */ 31 public class Ecore2XMLResourceImpl extends XMIResourceImpl implements Ecore2XMLResource 32 { 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 Ecore2XMLResourceImpl(URI uri) 42 { 43 super(uri); 44 } 45 46 } //Ecore2XMLResourceFactoryImpl 47