Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0dd628d3fce9a9cda01686d47e7d299870bae13a (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*****************************************************************************
 * Copyright (c) 2011 CEA LIST.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.uml.properties.datatype;

import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.emf.ecore.EDataType;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.papyrus.uml.tools.databinding.PapyrusObservableValue;

/**
 * Allows the manipulation of a UML DataType from a static profile (Implemented by an EMF EDataType)
 *
 * @author Camille Letavernier
 */
public class StructuredDataTypeObservableValue extends PapyrusObservableValue implements IAdaptable {

	protected EDataType type;

	protected DataTypeObservableValue observable;

	public StructuredDataTypeObservableValue(EObject owner, EStructuralFeature feature, EditingDomain domain, EDataType type) {
		super(owner, feature, domain);
		this.type = type;
	}

	@Override
	public Object getValueType() {
		return Object.class;
	}

	@Override
	protected Object doGetValue() {
		if (observable == null) {
			observable = DataTypeProvider.instance.getObservableDataType(type);
			observable.setOwner(eObject, eStructuralFeature, domain, type);
			observable.setValue(super.doGetValue());
		}
		return observable;
	}

	public void unset() {
		setValue(null);
	}

	@Override
	protected void doSetValue(Object value) { // value = dataType instance
		super.doSetValue(value); // TODO : type réel de value ? compatibilité des types ?

	}

	public Object getAdapter(Class adapter) {
		throw new UnsupportedOperationException();
	}
}

Back to the top