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