Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fd8979a4563ab41853c8f47feb12059f965eb7ba (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
/**
 * Copyright (c) 2011 Mia-Software.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * 	Emmanuelle Rouillé (Mia-Software) - Bug 352618 - To be able to use non derived facet structural features and save them values.
 */
package org.eclipse.papyrus.emf.facet.efacet.core.internal.serialization;

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

/**
 * Factory to create {@link ILinkToExtendedEObjectReference} adapters.
 *
 */
public interface ILinkToExtendedEObjectReferenceAdapterFactory extends AdapterFactory {

	/**
	 * Singleton {@link LinkToExtendedEObjectReferenceAdapterFactory}
	 */
	public static ILinkToExtendedEObjectReferenceAdapterFactory INSTANCE = new LinkToExtendedEObjectReferenceAdapterFactory();

	/**
	 * This method returns <code>true</code> if this factory is a factory for the given type {@link Object}, or <code>false</code> otherwise
	 */
	public boolean isFactoryForType(final Object type);

	/**
	 * Creates a new instance of Adapter for the given {@link Notifier}
	 */
	public Adapter createAdapter(final Notifier target);

}

Back to the top