Project

General

Profile

Download (1.35 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy
5
* http://www.e-taxonomy.eu
6
*
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10

    
11
package eu.etaxonomy.taxeditor.preference.matching;
12

    
13
import org.eclipse.ui.IWorkbench;
14

    
15
import eu.etaxonomy.cdm.model.name.NonViralName;
16
import eu.etaxonomy.cdm.strategy.match.IMatchStrategy;
17
import eu.etaxonomy.cdm.strategy.match.MatchException;
18
import eu.etaxonomy.cdm.strategy.match.MatchStrategyConfigurator;
19
import eu.etaxonomy.taxeditor.model.MessagingUtils;
20

    
21
/**
22
 * <p>NonViralNameMatchingPreference class.</p>
23
 *
24
 * @author n.hoffmann
25
 * @created Jan 22, 2010
26
 * @version 1.0
27
 */
28
public class NonViralNameMatchingPreference extends AbstractMatchingPreferences<NonViralName>{
29

    
30
	/** {@inheritDoc} */
31
	@Override
32
    public void init(IWorkbench workbench) {
33
	    super.init(workbench);
34
		clazz = NonViralName.class;
35

    
36
		try {
37
			matchStrategy = MatchStrategyConfigurator.NonViralNameMatchStrategy();
38
		} catch (MatchException e) {
39
			MessagingUtils.error(this.getClass(), e);
40
			throw new RuntimeException(e);
41
		}
42
	}
43

    
44
	/** {@inheritDoc} */
45
	@Override
46
	protected IMatchStrategy getDefaultMatchStrategy() throws MatchException {
47
		return MatchStrategyConfigurator.getDefaultNonViralNameMatchStrategy();
48
	}
49
}
(2-2/4)