Project

General

Profile

Download (1.1 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2018 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
package eu.etaxonomy.cdm.vaadin.view.name;
10

    
11
import com.vaadin.ui.ListSelect;
12

    
13
import eu.etaxonomy.cdm.model.name.TaxonName;
14
import eu.etaxonomy.cdm.model.reference.Reference;
15
import eu.etaxonomy.vaadin.component.ToManyRelatedEntitiesComboboxSelect;
16
import eu.etaxonomy.vaadin.component.ToOneRelatedEntityCombobox;
17
import eu.etaxonomy.vaadin.mvp.ApplicationView;
18

    
19
/**
20
 * @author a.kohlbecker
21
 * @since Jan 26, 2018
22
 *
23
 */
24
public interface NameTypeDesignationEditorView extends ApplicationView<NameTypeDesignationPresenter> {
25

    
26
    ToOneRelatedEntityCombobox<Reference> getCitationCombobox();
27

    
28
    ListSelect getTypeStatusSelect();
29

    
30
    ToManyRelatedEntitiesComboboxSelect<TaxonName> getTypifiedNamesComboboxSelect();
31

    
32
    ToOneRelatedEntityCombobox<TaxonName> getTypeNameField();
33

    
34
    void setShowTypeFlags(boolean showTypeFlags);
35

    
36
    boolean isShowTypeFlags();
37

    
38
}
(2-2/13)