Moving editor sources back into trunk
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / INameEditorCompositeRepository.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor.editor.name;
11
12 import org.eclipse.swt.widgets.Composite;
13
14 import eu.etaxonomy.cdm.model.name.HomotypicalGroup;
15 import eu.etaxonomy.cdm.model.taxon.Synonym;
16 import eu.etaxonomy.cdm.model.taxon.Taxon;
17 import eu.etaxonomy.cdm.model.taxon.TaxonBase;
18
19 /**
20 * @author p.ciardell
21 * @created 22.12.2008
22 * @version 1.0
23 */
24 public interface INameEditorCompositeRepository {
25
26 public Composite getAcceptedName();
27
28 public Composite getSynonym(Synonym synonym);
29
30 public Composite getHomotypicGroup(HomotypicalGroup group);
31
32 public Composite getMisappliedName(Taxon misappliedName);
33
34 public Composite getMisappliedGroup();
35
36 public Composite getConcept(Taxon relatedConcept);
37
38 public Composite getConceptGroup();
39 }