Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2a3425872270c77cb375b7e9e3aac7bbcff85bc7 (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
/*****************************************************************************
 * Copyright (c) 2014 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:
 *  CEA LIST - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.tools.elementtypesconfigurations.applystereotypeadviceconfiguration;

import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.gmf.runtime.common.core.command.CommandResult;
import org.eclipse.gmf.runtime.emf.commands.core.command.AbstractTransactionalCommand;
import org.eclipse.papyrus.uml.tools.elementtypesconfigurations.Activator;
import org.eclipse.papyrus.uml.tools.utils.NamedElementUtil;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.NamedElement;
import org.eclipse.uml2.uml.Stereotype;

public class ApplyStereotypeCommand extends AbstractTransactionalCommand {

	private Stereotype stereotype;

	private Element element;

	private boolean rename;

	/**
	 * @param domain
	 *            editing domain to modify the element
	 * @param element
	 *            the element on which stereotype is applied. Must not be <code>null</code>
	 * @param stereotype
	 *            the stereotype to modify
	 * @param rename
	 */
	public ApplyStereotypeCommand(TransactionalEditingDomain domain, Element element, Stereotype stereotype, boolean rename) {
		super(domain, "Apply Stereotype " + stereotype.getLabel(), getWorkspaceFiles(element));
		this.element = element;
		this.stereotype = stereotype;
		this.rename = rename;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
		try {
			Object stereotypeApplication = element.applyStereotype(stereotype);
			if (rename && element instanceof NamedElement) {
				if (((NamedElement) element).getNamespace() != null) {
					String newName = NamedElementUtil.getDefaultNameWithIncrementFromBase(stereotype.getName(), ((NamedElement) element).getNamespace().getMembers());
					((NamedElement) element).setName(newName);
				}
			}
			return CommandResult.newOKCommandResult(stereotypeApplication);
		} catch (Throwable t) {
			Activator.log.error(t);
			return CommandResult.newErrorCommandResult(t.getMessage());
		}
	}
}

Back to the top