Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3c613c374ed9aab91b3a54bb6d8bdec9d64995ab (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
/*****************************************************************************
 * Copyright (c) 2012 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:
 *  Vincent Lorenzo (CEA LIST) Vincent.Lorenzo@cea.fr - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.compare.merger.utils;

import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EReference;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.gmf.runtime.emf.type.core.requests.MoveRequest;

//TODO : move this class
/**
 * 
 * Created for EMF-Compare, for MoveModelElementMerger
 * 
 */
public class MoveWithIndexRequest extends MoveRequest {

	private int index;

	//TODO : and the other constructor?
	public MoveWithIndexRequest(TransactionalEditingDomain editingDomain, EObject targetContainer, EReference targetFeature, EObject elementToMove, final int index) {
		super(editingDomain, targetContainer, targetFeature, elementToMove);
		this.index = index;
	}


	public int getIndex() {
		return index;
	}

}

Back to the top