Skip to main content
summaryrefslogtreecommitdiffstats
blob: a5aef78c3deeb3d2f71ec41e2e6a8df2e11fa152 (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
/*******************************************************************************
 * Copyright (c) 2008, 2009 Dimitrios Kolovos and other.
 * 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:
 *     Dimitrios Kolovos - initial API and implementation
 *     Obeo
 *******************************************************************************/
package org.eclipse.emf.compare.match.internal.service;

import java.util.List;

import org.eclipse.emf.compare.match.service.IMatchEngineSelector;
import org.eclipse.emf.compare.match.service.MatchEngineDescriptor;

/**
 * This class will allow the user to select the matching engine he wants to use for comparison when more than
 * one are defined on a single extension.
 * 
 * @author <a href="dkolovos@cs.york.ac.uk">Dimitrios Kolovos</a>
 * @since 1.0
 */
public class DefaultMatchEngineSelector implements IMatchEngineSelector {
	/**
	 * {@inheritDoc}
	 * 
	 * @see org.eclipse.emf.compare.match.service.IMatchEngineSelector#selectMatchEngine(java.util.List)
	 */
	public MatchEngineDescriptor selectMatchEngine(List<MatchEngineDescriptor> engines) {
		MatchEngineDescriptor engine = null;

		if (!engines.isEmpty()) {
			engine = engines.get(0);
		}

		return engine;
	}
}

Back to the top