Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4b490bccf42176025e81916acdc4054279f6404c (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
/*****************************************************************************
 * Copyright (c) 2015 CEA LIST and others.
 * 
 * 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:
 *   Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.infra.emf.commands;

import org.eclipse.emf.ecore.EAnnotation;
import org.eclipse.emf.transaction.RecordingCommand;
import org.eclipse.emf.transaction.TransactionalEditingDomain;

/**
 * This allows to add a detail into the annotation.
 */
public class AddEAnnotationDetailCommand extends RecordingCommand {

	/**
	 * The owner annotation.
	 */
	private EAnnotation eAnnotation;

	/**
	 * The key to add.
	 */
	private String detailKey;

	/**
	 * The value of the detail key.
	 */
	private String value;

	/**
	 * Constructor.
	 *
	 * @param domain
	 *            The editing domain.
	 * @param annotation
	 *            The owner annotation.
	 * @param detailKey
	 *            The key to add.
	 * @param value
	 *            The value of the detail key.
	 */
	public AddEAnnotationDetailCommand(final TransactionalEditingDomain domain, final EAnnotation annotation, final String detailKey, final String value) {
		super(domain);
		this.eAnnotation = annotation;
		this.detailKey = detailKey;
		this.value = value;
	}

	/**
	 * {@inheritDoc}
	 * 
	 * @see org.eclipse.emf.transaction.RecordingCommand#doExecute()
	 */
	@Override
	protected void doExecute() {
		eAnnotation.getDetails().put(detailKey, value);
	}

}

Back to the top