Skip to main content
summaryrefslogtreecommitdiffstats
blob: e04dfea98ec26d8eba09feea1e62b5f95aa40877 (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
/*******************************************************************************
 * 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.emf.facet.efacet.core.internal.serialization;

import org.eclipse.emf.common.notify.impl.AdapterImpl;
import org.eclipse.emf.facet.efacet.metamodel.v0_2_0.efacet.serialization.ExtendedEObjectReference;

public class LinkToExtendedEObjectReferenceAdapter extends AdapterImpl implements
		ILinkToExtendedEObjectReference {

	private ExtendedEObjectReference extendedEObjectReference;

	public ExtendedEObjectReference getExtendedEObjectReference() {
		return this.extendedEObjectReference;
	}

	public void setExtendedEObjectReference(final ExtendedEObjectReference extendedEObjectReference) {
		this.extendedEObjectReference = extendedEObjectReference;
	}

	@Override
	public boolean isAdapterForType(final Object type) {
		return type == ILinkToExtendedEObjectReference.class;
	}

}

Back to the top