Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4d9123290d129793eb6242ea5a4852695f140af9 (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
/**
 * 
 */
package org.eclipse.papyrus.infra.extendedtypes.invariantsemantictypeconfiguration.provider;

import org.eclipse.emf.common.notify.Adapter;

/**
 * @author RS211865
 *
 */
public class CustomInvariantSemanticTypeConfigurationItemProviderAdapterFactory
		extends InvariantSemanticTypeConfigurationItemProviderAdapterFactory {

	/**
	 * {@inheritDoc}
	 */
	@Override
	public Adapter createInvariantSemanticTypeConfigurationAdapter() {
		if (invariantSemanticTypeConfigurationItemProvider == null) {
			invariantSemanticTypeConfigurationItemProvider = new CustomInvariantSemanticTypeConfigurationItemProvider(this);
		}

		return invariantSemanticTypeConfigurationItemProvider;
	}
}

Back to the top