082b736d26fac458ad7c13717fe1a7d4ed36df95
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / BasionymSynonymPropertySource.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.editor.name;
12
13 import org.eclipse.ui.views.properties.IPropertySource;
14
15 import eu.etaxonomy.cdm.model.taxon.Synonym;
16 import eu.etaxonomy.taxeditor.propertysheet.name.SynonymPropertySource;
17
18 /**
19 * @author p.ciardelli
20 * @created 28.04.2009
21 * @version 1.0
22 */
23 public class BasionymSynonymPropertySource extends SynonymPropertySource
24 implements IPropertySource {
25 /**
26 * @param synonym
27 */
28 public BasionymSynonymPropertySource(Synonym synonym) {
29 super(synonym);
30 }
31 }