Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5223fa5bb0c82f6024dc1289b1cf0cf7bbb1a5a6 (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
/*****************************************************************************
 * 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 java.util.Comparator;
import java.util.Iterator;

import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.ecore.EObject;

/**
 * 
 * This class allows to compare EObject using the PositionAdapter.
 * 
 * 
 */
public class EObjectComparator<T> implements Comparator<T> {

	/**
	 * 
	 * @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
	 * 
	 * @param o1
	 * @param o2
	 * @return
	 */
	public int compare(final T o1, final T o2) {
		if(o1 instanceof EObject && o2 instanceof EObject) {
			final int position1 = getWantedPosition((EObject)o1);
			final int position2 = getWantedPosition((EObject)o2);
			if(position1 != -1 && position2 != -1) {
				return position1 - position2;
			}
		}
		return 0;
	}

	/**
	 * 
	 * @param obj1
	 *        an EObject
	 * @return
	 *         the wanted position for this object
	 */
	private int getWantedPosition(final EObject obj1) {
		final Iterator<Adapter> adapters = obj1.eAdapters().iterator();
		int expectedIndex = -1;
		while(expectedIndex == -1 && adapters.hasNext()) {
			final Adapter adapter = adapters.next();
			if(adapter instanceof PositionAdapter) {
				expectedIndex = ((PositionAdapter)adapter).getExpectedIndex();
			}
		}
		return expectedIndex;
	}

}

Back to the top