Merge branch 'release/3.12.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / matching / ReferenceMatchingPreference.java
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.reference.Reference;
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 * @author n.hoffmann
23 * @created Jan 22, 2010
24 * @version 1.0
25 */
26 public class ReferenceMatchingPreference extends AbstractMatchingPreferences<Reference> {
27
28 /** {@inheritDoc} */
29 @Override
30 public void init(IWorkbench workbench) {
31 super.init(workbench);
32 clazz = Reference.class;
33
34 try {
35 matchStrategy = MatchStrategyConfigurator.ReferenceMatchStrategy();
36 } catch (MatchException e) {
37 MessagingUtils.error(this.getClass(), e);
38 throw new RuntimeException(e);
39 }
40 }
41
42 /** {@inheritDoc} */
43 @Override
44 protected IMatchStrategy getDefaultMatchStrategy() throws MatchException {
45 return MatchStrategyConfigurator.getDefaultReferenceMatchStrategy();
46 }
47 }