Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a490eb1958036f757d77e52c0690044d7c6cb009 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
 */
package org.eclipse.papyrus.infra.emf.types.ui.advices.values.util;

import org.eclipse.emf.common.util.URI;

import org.eclipse.emf.ecore.resource.Resource;

import org.eclipse.emf.ecore.resource.impl.ResourceFactoryImpl;

/**
 * <!-- begin-user-doc -->
 * The <b>Resource Factory</b> associated with the package.
 * <!-- end-user-doc -->
 * @see org.eclipse.papyrus.infra.emf.types.ui.advices.values.util.RuntimeValuesAdviceResourceImpl
 * @generated
 */
public class RuntimeValuesAdviceResourceFactoryImpl extends ResourceFactoryImpl {
	/**
	 * Creates an instance of the resource factory.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public RuntimeValuesAdviceResourceFactoryImpl() {
		super();
	}

	/**
	 * Creates an instance of the resource.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public Resource createResource(URI uri) {
		Resource result = new RuntimeValuesAdviceResourceImpl(uri);
		return result;
	}

} //RuntimeValuesAdviceResourceFactoryImpl

Back to the top