Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7ecfc6d434ed60f0c057682e9e0d15eaef4337af (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
68
/*****************************************************************************
 * Copyright (c) 2010 CEA LIST.
 *    
 * 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:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.uml.properties.xtext;

import org.eclipse.emf.ecore.EObject;
import org.eclipse.papyrus.property.editor.xtext.ui.contributions.PropertyPopupEditorConfigurationContribution;
import org.eclipse.papyrus.property.editor.xtext.ui.internal.UmlPropertyActivator;
import org.eclipse.papyrus.property.editor.xtext.umlProperty.PropertyRule;
import org.eclipse.papyrus.infra.widgets.xtext.adapter.IXtextAdapter;
import org.eclipse.uml2.uml.Property;
import org.eclipse.uml2.uml.UMLFactory;
import org.eclipse.uml2.uml.VisibilityKind;

import com.google.inject.Injector;


public class PropertyAdapter implements IXtextAdapter {

	public EObject reconcile(EObject sourceModelObject, EObject xtextObject) {
		Property target;
		if(sourceModelObject != null) {
			target = (Property)sourceModelObject;
		} else {
			target = UMLFactory.eINSTANCE.createProperty();
		}
		PropertyRule source = (PropertyRule)xtextObject;


		//TODO


		return target;
	}

	private VisibilityKind getVisibility(PropertyRule source) {
		switch(source.getVisibility()) {
		case PACKAGE:
			return VisibilityKind.PACKAGE_LITERAL;
		case PRIVATE:
			return VisibilityKind.PRIVATE_LITERAL;
		case PROTECTED:
			return VisibilityKind.PROTECTED_LITERAL;
		case PUBLIC:
			return VisibilityKind.PUBLIC_LITERAL;
		default:
			return null;
		}
	}

	public String getText(EObject modelObject) {
		PropertyPopupEditorConfigurationContribution config = new PropertyPopupEditorConfigurationContribution();
		return config.getTextToEdit(modelObject); //Cannot retrieve the property type's label
	}

	public Injector getInjector(EObject sourceModelObject) {
		return UmlPropertyActivator.getInstance().getInjector((Property)sourceModelObject);
	}

}

Back to the top