| 1 | /** |
| 2 | * Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany |
| 3 | * |
| 4 | * $Id$ |
| 5 | */ |
| 6 | package de.uka.ipd.sdq.pcm.resourceenvironment.util; |
| 7 | |
| 8 | import org.eclipse.emf.common.util.URI; |
| 9 | import org.eclipse.emf.ecore.resource.Resource; |
| 10 | import org.eclipse.emf.ecore.resource.impl.ResourceFactoryImpl; |
| 11 | import org.eclipse.emf.ecore.xmi.XMLResource; |
| 12 | |
| 13 | /** |
| 14 | * <!-- begin-user-doc --> |
| 15 | * The <b>Resource Factory</b> associated with the package. |
| 16 | * <!-- end-user-doc --> |
| 17 | * @see de.uka.ipd.sdq.pcm.resourceenvironment.util.ResourceenvironmentResourceImpl |
| 18 | * @generated |
| 19 | */ |
| 20 | public class ResourceenvironmentResourceFactoryImpl extends ResourceFactoryImpl { |
| 21 | /** |
| 22 | * <!-- begin-user-doc --> |
| 23 | * <!-- end-user-doc --> |
| 24 | * @generated |
| 25 | */ |
| 26 | public static final String copyright = "Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany"; |
| 27 | |
| 28 | /** |
| 29 | * Creates an instance of the resource factory. |
| 30 | * <!-- begin-user-doc --> |
| 31 | * <!-- end-user-doc --> |
| 32 | * @generated |
| 33 | */ |
| 34 | public ResourceenvironmentResourceFactoryImpl() { |
| 35 | super(); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Creates an instance of the resource. |
| 40 | * <!-- begin-user-doc --> |
| 41 | * <!-- end-user-doc --> |
| 42 | * @generated |
| 43 | */ |
| 44 | @Override |
| 45 | public Resource createResource(URI uri) { |
| 46 | XMLResource result = new ResourceenvironmentResourceImpl(uri); |
| 47 | return result; |
| 48 | } |
| 49 | |
| 50 | } //ResourceenvironmentResourceFactoryImpl |