Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2e039e1f6697e6c46a7529f84d64febac78390b5 (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
/*****************************************************************************
 * 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 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.newchild.action;

import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.emf.type.core.IElementType;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.papyrus.core.utils.GMFtoEMFCommandWrapper;
import org.eclipse.papyrus.extendedtypes.ExtendedEditHelperAdvice;
import org.eclipse.papyrus.extendedtypes.ExtendedElementTypeConfiguration;
import org.eclipse.papyrus.extendedtypes.ExtendedSemanticTypeDescriptor;
import org.eclipse.papyrus.extendedtypes.types.ExtendedHintedTypeFactory;
import org.eclipse.papyrus.service.edit.service.ElementEditServiceUtils;
import org.eclipse.papyrus.service.edit.service.IElementEditService;


public class ExtendedTypeAction extends Action {

	private IElementType elementType;

	private EObject parent;

	private EditingDomain domain;

	private ExtendedSemanticTypeDescriptor descriptor;

	public static ExtendedEditHelperAdvice advice = new ExtendedEditHelperAdvice();

	public ExtendedTypeAction(EObject parent, ExtendedElementTypeConfiguration elementTypeConfiguration, EditingDomain domain) {
		this.descriptor = new ExtendedSemanticTypeDescriptor(elementTypeConfiguration);
		this.elementType = ExtendedHintedTypeFactory.getInstance().createSpecializationType(descriptor);
		this.parent = parent;
		this.domain = domain;

		configureAction();
	}

	protected void configureAction() {
		setText(descriptor.getName());
		setImageDescriptor(ImageDescriptor.createFromURL(descriptor.getIconURL()));
	}

	@Override
	public void run() {
		CreateElementRequest request = new CreateElementRequest((TransactionalEditingDomain)domain, parent, elementType);

		IElementEditService provider = ElementEditServiceUtils.getCommandProvider(parent);

		if(provider != null) {
			ICommand createGMFCommand = provider.getEditCommand(request);

			Command emfCommand = new GMFtoEMFCommandWrapper(createGMFCommand);

			domain.getCommandStack().execute(emfCommand);
		}
	}
}

Back to the top