Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1979fa92a7cbd98187b7c990454e0cfd16cf62e2 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/**
 * Copyright (c) 2012 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:
 *  	Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
 *  	Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors
 */
package org.eclipse.papyrus.emf.facet.efacet.sdk.ui.internal.widget.creation;

import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EParameter;
import org.eclipse.emf.ecore.EcoreFactory;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.Facet;
import org.eclipse.papyrus.emf.facet.efacet.metamodel.v0_2_0.efacet.FacetOperation;
import org.eclipse.papyrus.emf.facet.efacet.sdk.ui.internal.exported.widget.IDerivedTypedElementWidget;
import org.eclipse.papyrus.emf.facet.efacet.sdk.ui.internal.widget.component.getorcreate.GetOrCreateOperationWidget;
import org.eclipse.papyrus.emf.facet.efacet.sdk.ui.internal.widget.component.properties.name.GetOperationNameWidget;
import org.eclipse.papyrus.emf.facet.util.ui.internal.exported.dialog.IDialog;
import org.eclipse.papyrus.emf.facet.util.ui.internal.exported.util.widget.command.IGetOrCreateFilteredElementCommmandWidget;
import org.eclipse.papyrus.emf.facet.util.ui.internal.exported.util.widget.component.getorcreate.AbstractGetOrCreateElementWithButtonWidget;
import org.eclipse.papyrus.emf.facet.util.ui.utils.PropertyElement2;
import org.eclipse.swt.widgets.Composite;

/**
 * Concrete implementation of {@link AbstractAddElementWidget} for the creation
 * of an parameter in a operation.
 */
public class AddParameterInOperationWidget extends
		AbstractETypedElementWidget<EParameter, FacetOperation, IGetOrCreateFilteredElementCommmandWidget<FacetOperation, IDerivedTypedElementWidget>> {

	/**
	 * Constructor.
	 * 
	 * @param parent
	 *            the parent of this composite.
	 * @param properties
	 *            the properties.
	 */
	public AddParameterInOperationWidget(final Composite parent,
			final EditingDomain editingDomain,
			final PropertyElement2<FacetOperation> containerProperty,
			final PropertyElement2<String> nameProperty,
			final PropertyElement2<Integer> lowerBdProperty,
			final PropertyElement2<Integer> upperBdProperty,
			final PropertyElement2<EClassifier> typeProperty,
			final PropertyElement2<Boolean> orderedProperty,
			final PropertyElement2<Boolean> uniqueProperty) {
		super(parent, editingDomain, containerProperty, nameProperty,
				lowerBdProperty,
				upperBdProperty, typeProperty, orderedProperty, uniqueProperty);
	}

	@Override
	public Command getCommand() {
		final FacetOperation facetOperation = this.getContainerPropery()
				.getValue2();
		final EParameter operationParam = createOperationParameter();
		return this.getCommandFactory()
				.createAddParameterInOperationCommand(facetOperation,
						operationParam);
	}

	protected EParameter createOperationParameter() {
		final EParameter operationParam = getOperationParameter();
		operationParam.setName(getElementNamePropertyValue());
		operationParam.setLowerBound(getLowerBoundProperty().getValue2()
				.intValue());
		operationParam.setUpperBound(getUpperBoundProperty().getValue2()
				.intValue());
		operationParam.setEType(getTypeProperty().getValue2());
		operationParam.setOrdered(getOrderedProperty().getValue2()
				.booleanValue());
		operationParam
				.setUnique(getUniqueProperty().getValue2().booleanValue());
		return operationParam;
	}

	@SuppressWarnings("static-method")
	//@SuppressWarnings("static-method") This method cannot be static because it is overrode by EditFacetWidget.
	protected EParameter getOperationParameter() {
		return EcoreFactory.eINSTANCE.createEParameter();
	}

	@Override
	protected GetOperationNameWidget createGetElementNameSubWidgetComposite() {
		return new GetOperationNameWidget(this, this.getElementNameProperty());
	}

	@Override
	protected AbstractGetOrCreateElementWithButtonWidget<FacetOperation, IDialog<IGetOrCreateFilteredElementCommmandWidget<FacetOperation, IDerivedTypedElementWidget>>> createGetOrCreateElementWidgetComposite() {
		final Facet context = (Facet) this.getContainerPropery().getValue2()
				.eContainer();
		return new GetOrCreateOperationWidget(this, this.getContainerPropery(),
				this.getEditingDomain(), context);
	}

	@Override
	protected Class<EClassifier> getETypeSelectionOption() {
		return EClassifier.class;
	}

	@Override
	public void notifyChanged() {
		// No action has to be done if a change appends.
	}

	@Override
	public void onDialogValidation() {
		// Nothing.
	}

}

Back to the top